@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
package/dist-cjs/index.js
CHANGED
|
@@ -294,7 +294,14 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
|
|
|
294
294
|
};
|
|
295
295
|
|
|
296
296
|
const _AC = "AuthorizerConfiguration";
|
|
297
|
+
const _ACMVT = "AuthorizingClaimMatchValueType";
|
|
297
298
|
const _ADE = "AccessDeniedException";
|
|
299
|
+
const _AGTC = "ApiGatewayTargetConfiguration";
|
|
300
|
+
const _AGTCp = "ApiGatewayToolConfiguration";
|
|
301
|
+
const _AGTF = "ApiGatewayToolFilter";
|
|
302
|
+
const _AGTFp = "ApiGatewayToolFilters";
|
|
303
|
+
const _AGTO = "ApiGatewayToolOverride";
|
|
304
|
+
const _AGTOp = "ApiGatewayToolOverrides";
|
|
298
305
|
const _AKCP = "ApiKeyCredentialProviders";
|
|
299
306
|
const _AKCPI = "ApiKeyCredentialProviderItem";
|
|
300
307
|
const _AKT = "ApiKeyType";
|
|
@@ -306,6 +313,7 @@ const _ARE = "AgentRuntimeEndpoint";
|
|
|
306
313
|
const _AREg = "AgentRuntimeEndpoints";
|
|
307
314
|
const _ARg = "AgentRuntimes";
|
|
308
315
|
const _ASC = "ApiSchemaConfiguration";
|
|
316
|
+
const _BEMC = "BedrockEvaluatorModelConfig";
|
|
309
317
|
const _BNC = "BrowserNetworkConfiguration";
|
|
310
318
|
const _BS = "BrowserSummary";
|
|
311
319
|
const _BSCI = "BrowserSigningConfigInput";
|
|
@@ -331,11 +339,16 @@ const _CCI = "CustomConfigurationInput";
|
|
|
331
339
|
const _CCIR = "CreateCodeInterpreterRequest";
|
|
332
340
|
const _CCIRr = "CreateCodeInterpreterResponse";
|
|
333
341
|
const _CCIr = "CreateCodeInterpreter";
|
|
342
|
+
const _CCVT = "CustomClaimValidationType";
|
|
343
|
+
const _CCVTu = "CustomClaimValidationsType";
|
|
334
344
|
const _CCo = "ContainerConfiguration";
|
|
335
345
|
const _CCon = "ConsolidationConfiguration";
|
|
336
346
|
const _CE = "ConflictException";
|
|
337
347
|
const _CEC = "CustomExtractionConfiguration";
|
|
338
348
|
const _CECI = "CustomExtractionConfigurationInput";
|
|
349
|
+
const _CER = "CreateEvaluatorRequest";
|
|
350
|
+
const _CERr = "CreateEvaluatorResponse";
|
|
351
|
+
const _CEr = "CreateEvaluator";
|
|
339
352
|
const _CG = "CreateGateway";
|
|
340
353
|
const _CGR = "CreateGatewayRequest";
|
|
341
354
|
const _CGRr = "CreateGatewayResponse";
|
|
@@ -351,18 +364,36 @@ const _CME = "ConcurrentModificationException";
|
|
|
351
364
|
const _CMI = "CreateMemoryInput";
|
|
352
365
|
const _CMO = "CreateMemoryOutput";
|
|
353
366
|
const _CMSI = "CustomMemoryStrategyInput";
|
|
367
|
+
const _CMVT = "ClaimMatchValueType";
|
|
354
368
|
const _COCP = "CreateOauth2CredentialProvider";
|
|
355
369
|
const _COCPR = "CreateOauth2CredentialProviderRequest";
|
|
356
370
|
const _COCPRr = "CreateOauth2CredentialProviderResponse";
|
|
371
|
+
const _COEC = "CreateOnlineEvaluationConfig";
|
|
372
|
+
const _COECR = "CreateOnlineEvaluationConfigRequest";
|
|
373
|
+
const _COECRr = "CreateOnlineEvaluationConfigResponse";
|
|
357
374
|
const _COPCI = "CustomOauth2ProviderConfigInput";
|
|
358
375
|
const _COPCO = "CustomOauth2ProviderConfigOutput";
|
|
359
|
-
const _CP = "
|
|
376
|
+
const _CP = "CedarPolicy";
|
|
360
377
|
const _CPC = "CredentialProviderConfiguration";
|
|
361
378
|
const _CPCr = "CredentialProviderConfigurations";
|
|
379
|
+
const _CPE = "CreatePolicyEngine";
|
|
380
|
+
const _CPER = "CreatePolicyEngineRequest";
|
|
381
|
+
const _CPERr = "CreatePolicyEngineResponse";
|
|
382
|
+
const _CPR = "CreatePolicyRequest";
|
|
383
|
+
const _CPRr = "CreatePolicyResponse";
|
|
384
|
+
const _CPr = "CredentialProvider";
|
|
385
|
+
const _CPre = "CreatePolicy";
|
|
386
|
+
const _CRC = "CustomReflectionConfiguration";
|
|
387
|
+
const _CRCI = "CustomReflectionConfigurationInput";
|
|
388
|
+
const _CSD = "CategoricalScaleDefinition";
|
|
389
|
+
const _CSDa = "CategoricalScaleDefinitions";
|
|
362
390
|
const _CST = "ClientSecretType";
|
|
363
391
|
const _CWI = "CreateWorkloadIdentity";
|
|
364
392
|
const _CWIR = "CreateWorkloadIdentityRequest";
|
|
365
393
|
const _CWIRr = "CreateWorkloadIdentityResponse";
|
|
394
|
+
const _CWLIC = "CloudWatchLogsInputConfig";
|
|
395
|
+
const _CWOC = "CloudWatchOutputConfig";
|
|
396
|
+
const _Co = "Content";
|
|
366
397
|
const _D = "Description";
|
|
367
398
|
const _DAKCP = "DeleteApiKeyCredentialProvider";
|
|
368
399
|
const _DAKCPR = "DeleteApiKeyCredentialProviderRequest";
|
|
@@ -379,6 +410,9 @@ const _DBRe = "DeleteBrowserResponse";
|
|
|
379
410
|
const _DCI = "DeleteCodeInterpreter";
|
|
380
411
|
const _DCIR = "DeleteCodeInterpreterRequest";
|
|
381
412
|
const _DCIRe = "DeleteCodeInterpreterResponse";
|
|
413
|
+
const _DE = "DeleteEvaluator";
|
|
414
|
+
const _DER = "DeleteEvaluatorRequest";
|
|
415
|
+
const _DERe = "DeleteEvaluatorResponse";
|
|
382
416
|
const _DF = "DecryptionFailure";
|
|
383
417
|
const _DG = "DeleteGateway";
|
|
384
418
|
const _DGR = "DeleteGatewayRequest";
|
|
@@ -394,13 +428,50 @@ const _DMSL = "DeleteMemoryStrategiesList";
|
|
|
394
428
|
const _DOCP = "DeleteOauth2CredentialProvider";
|
|
395
429
|
const _DOCPR = "DeleteOauth2CredentialProviderRequest";
|
|
396
430
|
const _DOCPRe = "DeleteOauth2CredentialProviderResponse";
|
|
431
|
+
const _DOEC = "DeleteOnlineEvaluationConfig";
|
|
432
|
+
const _DOECR = "DeleteOnlineEvaluationConfigRequest";
|
|
433
|
+
const _DOECRe = "DeleteOnlineEvaluationConfigResponse";
|
|
434
|
+
const _DP = "DeletePolicy";
|
|
435
|
+
const _DPE = "DeletePolicyEngine";
|
|
436
|
+
const _DPER = "DeletePolicyEngineRequest";
|
|
437
|
+
const _DPERe = "DeletePolicyEngineResponse";
|
|
438
|
+
const _DPR = "DeletePolicyRequest";
|
|
439
|
+
const _DPRe = "DeletePolicyResponse";
|
|
440
|
+
const _DRP = "DeleteResourcePolicy";
|
|
441
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
442
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
443
|
+
const _DSC = "DataSourceConfig";
|
|
397
444
|
const _DWI = "DeleteWorkloadIdentity";
|
|
398
445
|
const _DWIR = "DeleteWorkloadIdentityRequest";
|
|
399
446
|
const _DWIRe = "DeleteWorkloadIdentityResponse";
|
|
400
|
-
const _EC = "
|
|
447
|
+
const _EC = "EvaluatorConfig";
|
|
448
|
+
const _ECD = "EvaluationConfigDescription";
|
|
449
|
+
const _ECO = "EpisodicConsolidationOverride";
|
|
450
|
+
const _ECx = "ExtractionConfiguration";
|
|
451
|
+
const _ED = "EvaluatorDescription";
|
|
452
|
+
const _EEO = "EpisodicExtractionOverride";
|
|
401
453
|
const _EF = "EncryptionFailure";
|
|
454
|
+
const _EI = "EvaluatorInstructions";
|
|
455
|
+
const _EL = "EvaluatorList";
|
|
456
|
+
const _EMC = "EvaluatorModelConfig";
|
|
457
|
+
const _EMSI = "EpisodicMemoryStrategyInput";
|
|
402
458
|
const _EN = "EndpointName";
|
|
459
|
+
const _EOCCI = "EpisodicOverrideConsolidationConfigurationInput";
|
|
460
|
+
const _EOCI = "EpisodicOverrideConfigurationInput";
|
|
461
|
+
const _EOECI = "EpisodicOverrideExtractionConfigurationInput";
|
|
462
|
+
const _EORCI = "EpisodicOverrideReflectionConfigurationInput";
|
|
463
|
+
const _ER = "EvaluatorReference";
|
|
464
|
+
const _ERC = "EpisodicReflectionConfiguration";
|
|
465
|
+
const _ERCI = "EpisodicReflectionConfigurationInput";
|
|
466
|
+
const _ERO = "EpisodicReflectionOverride";
|
|
467
|
+
const _ES = "EvaluatorSummary";
|
|
468
|
+
const _ESL = "EvaluatorSummaryList";
|
|
403
469
|
const _EVM = "EnvironmentVariablesMap";
|
|
470
|
+
const _F = "Filter";
|
|
471
|
+
const _FL = "FilterList";
|
|
472
|
+
const _FV = "FilterValue";
|
|
473
|
+
const _Fi = "Finding";
|
|
474
|
+
const _Fin = "Findings";
|
|
404
475
|
const _GAKCP = "GatewayApiKeyCredentialProvider";
|
|
405
476
|
const _GAKCPR = "GetApiKeyCredentialProviderRequest";
|
|
406
477
|
const _GAKCPRe = "GetApiKeyCredentialProviderResponse";
|
|
@@ -418,6 +489,9 @@ const _GCI = "GetCodeInterpreter";
|
|
|
418
489
|
const _GCIR = "GetCodeInterpreterRequest";
|
|
419
490
|
const _GCIRe = "GetCodeInterpreterResponse";
|
|
420
491
|
const _GD = "GatewayDescription";
|
|
492
|
+
const _GE = "GetEvaluator";
|
|
493
|
+
const _GER = "GetEvaluatorRequest";
|
|
494
|
+
const _GERe = "GetEvaluatorResponse";
|
|
421
495
|
const _GG = "GetGateway";
|
|
422
496
|
const _GGR = "GetGatewayRequest";
|
|
423
497
|
const _GGRe = "GetGatewayResponse";
|
|
@@ -433,11 +507,27 @@ const _GN = "GatewayName";
|
|
|
433
507
|
const _GOCP = "GetOauth2CredentialProvider";
|
|
434
508
|
const _GOCPR = "GetOauth2CredentialProviderRequest";
|
|
435
509
|
const _GOCPRe = "GetOauth2CredentialProviderResponse";
|
|
510
|
+
const _GOEC = "GetOnlineEvaluationConfig";
|
|
511
|
+
const _GOECR = "GetOnlineEvaluationConfigRequest";
|
|
512
|
+
const _GOECRe = "GetOnlineEvaluationConfigResponse";
|
|
436
513
|
const _GOPCI = "GithubOauth2ProviderConfigInput";
|
|
437
514
|
const _GOPCIo = "GoogleOauth2ProviderConfigInput";
|
|
438
515
|
const _GOPCO = "GithubOauth2ProviderConfigOutput";
|
|
439
516
|
const _GOPCOo = "GoogleOauth2ProviderConfigOutput";
|
|
517
|
+
const _GP = "GetPolicy";
|
|
440
518
|
const _GPC = "GatewayProtocolConfiguration";
|
|
519
|
+
const _GPE = "GetPolicyEngine";
|
|
520
|
+
const _GPEC = "GatewayPolicyEngineConfiguration";
|
|
521
|
+
const _GPER = "GetPolicyEngineRequest";
|
|
522
|
+
const _GPERe = "GetPolicyEngineResponse";
|
|
523
|
+
const _GPG = "GetPolicyGeneration";
|
|
524
|
+
const _GPGR = "GetPolicyGenerationRequest";
|
|
525
|
+
const _GPGRe = "GetPolicyGenerationResponse";
|
|
526
|
+
const _GPR = "GetPolicyRequest";
|
|
527
|
+
const _GPRe = "GetPolicyResponse";
|
|
528
|
+
const _GRP = "GetResourcePolicy";
|
|
529
|
+
const _GRPR = "GetResourcePolicyRequest";
|
|
530
|
+
const _GRPRe = "GetResourcePolicyResponse";
|
|
441
531
|
const _GS = "GatewaySummary";
|
|
442
532
|
const _GSa = "GatewaySummaries";
|
|
443
533
|
const _GT = "GatewayTarget";
|
|
@@ -448,15 +538,17 @@ const _GTVRe = "GetTokenVaultResponse";
|
|
|
448
538
|
const _GWI = "GetWorkloadIdentity";
|
|
449
539
|
const _GWIR = "GetWorkloadIdentityRequest";
|
|
450
540
|
const _GWIRe = "GetWorkloadIdentityResponse";
|
|
451
|
-
const _IC = "
|
|
541
|
+
const _IC = "InferenceConfiguration";
|
|
452
542
|
const _ICI = "InvocationConfigurationInput";
|
|
453
|
-
const _ICn = "
|
|
543
|
+
const _ICn = "InvocationConfiguration";
|
|
544
|
+
const _ICnt = "InterceptorConfiguration";
|
|
454
545
|
const _IIC = "InterceptorInputConfiguration";
|
|
455
546
|
const _IOPCI = "IncludedOauth2ProviderConfigInput";
|
|
456
547
|
const _IOPCO = "IncludedOauth2ProviderConfigOutput";
|
|
457
548
|
const _IP = "InlinePayload";
|
|
458
549
|
const _ISE = "InternalServerException";
|
|
459
550
|
const _KC = "KmsConfiguration";
|
|
551
|
+
const _LAAJEC = "LlmAsAJudgeEvaluatorConfig";
|
|
460
552
|
const _LAKCP = "ListApiKeyCredentialProviders";
|
|
461
553
|
const _LAKCPR = "ListApiKeyCredentialProvidersRequest";
|
|
462
554
|
const _LAKCPRi = "ListApiKeyCredentialProvidersResponse";
|
|
@@ -476,6 +568,9 @@ const _LC = "LifecycleConfiguration";
|
|
|
476
568
|
const _LCI = "ListCodeInterpreters";
|
|
477
569
|
const _LCIR = "ListCodeInterpretersRequest";
|
|
478
570
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
571
|
+
const _LE = "ListEvaluators";
|
|
572
|
+
const _LER = "ListEvaluatorsRequest";
|
|
573
|
+
const _LERi = "ListEvaluatorsResponse";
|
|
479
574
|
const _LG = "ListGateways";
|
|
480
575
|
const _LGR = "ListGatewaysRequest";
|
|
481
576
|
const _LGRi = "ListGatewaysResponse";
|
|
@@ -489,8 +584,23 @@ const _LMO = "ListMemoriesOutput";
|
|
|
489
584
|
const _LOCP = "ListOauth2CredentialProviders";
|
|
490
585
|
const _LOCPR = "ListOauth2CredentialProvidersRequest";
|
|
491
586
|
const _LOCPRi = "ListOauth2CredentialProvidersResponse";
|
|
587
|
+
const _LOEC = "ListOnlineEvaluationConfigs";
|
|
588
|
+
const _LOECR = "ListOnlineEvaluationConfigsRequest";
|
|
589
|
+
const _LOECRi = "ListOnlineEvaluationConfigsResponse";
|
|
492
590
|
const _LOPCI = "LinkedinOauth2ProviderConfigInput";
|
|
493
591
|
const _LOPCO = "LinkedinOauth2ProviderConfigOutput";
|
|
592
|
+
const _LP = "ListPolicies";
|
|
593
|
+
const _LPE = "ListPolicyEngines";
|
|
594
|
+
const _LPER = "ListPolicyEnginesRequest";
|
|
595
|
+
const _LPERi = "ListPolicyEnginesResponse";
|
|
596
|
+
const _LPG = "ListPolicyGenerations";
|
|
597
|
+
const _LPGA = "ListPolicyGenerationAssets";
|
|
598
|
+
const _LPGAR = "ListPolicyGenerationAssetsRequest";
|
|
599
|
+
const _LPGARi = "ListPolicyGenerationAssetsResponse";
|
|
600
|
+
const _LPGR = "ListPolicyGenerationsRequest";
|
|
601
|
+
const _LPGRi = "ListPolicyGenerationsResponse";
|
|
602
|
+
const _LPR = "ListPoliciesRequest";
|
|
603
|
+
const _LPRi = "ListPoliciesResponse";
|
|
494
604
|
const _LTFR = "ListTagsForResource";
|
|
495
605
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
496
606
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
@@ -510,6 +620,7 @@ const _MMSI = "ModifyMemoryStrategyInput";
|
|
|
510
620
|
const _MMSL = "ModifyMemoryStrategiesList";
|
|
511
621
|
const _MOPCI = "MicrosoftOauth2ProviderConfigInput";
|
|
512
622
|
const _MOPCO = "MicrosoftOauth2ProviderConfigOutput";
|
|
623
|
+
const _MRC = "ModifyReflectionConfiguration";
|
|
513
624
|
const _MS = "MemoryStrategy";
|
|
514
625
|
const _MSC = "ModifyStrategyConfiguration";
|
|
515
626
|
const _MSI = "MemoryStrategyInput";
|
|
@@ -521,25 +632,48 @@ const _MSTC = "McpServerTargetConfiguration";
|
|
|
521
632
|
const _MSe = "MemorySummary";
|
|
522
633
|
const _MTC = "McpTargetConfiguration";
|
|
523
634
|
const _NC = "NetworkConfiguration";
|
|
635
|
+
const _NSD = "NumericalScaleDefinition";
|
|
636
|
+
const _NSDu = "NumericalScaleDefinitions";
|
|
524
637
|
const _OACP = "OAuthCredentialProvider";
|
|
525
638
|
const _OACPV = "OAuthCustomParametersValue";
|
|
526
639
|
const _OACPu = "OAuthCustomParameters";
|
|
527
640
|
const _OASM = "Oauth2AuthorizationServerMetadata";
|
|
641
|
+
const _OC = "OutputConfig";
|
|
528
642
|
const _OCP = "Oauth2CredentialProviders";
|
|
529
643
|
const _OCPI = "Oauth2CredentialProviderItem";
|
|
530
644
|
const _OD = "Oauth2Discovery";
|
|
645
|
+
const _OECS = "OnlineEvaluationConfigSummary";
|
|
646
|
+
const _OECSL = "OnlineEvaluationConfigSummaryList";
|
|
531
647
|
const _OPCI = "Oauth2ProviderConfigInput";
|
|
532
648
|
const _OPCO = "Oauth2ProviderConfigOutput";
|
|
533
649
|
const _P = "Prompt";
|
|
534
650
|
const _PC = "ProtocolConfiguration";
|
|
651
|
+
const _PD = "PolicyDefinition";
|
|
652
|
+
const _PE = "PolicyEngine";
|
|
653
|
+
const _PEo = "PolicyEngines";
|
|
654
|
+
const _PG = "PolicyGeneration";
|
|
655
|
+
const _PGA = "PolicyGenerationAsset";
|
|
656
|
+
const _PGAo = "PolicyGenerationAssets";
|
|
657
|
+
const _PGo = "PolicyGenerations";
|
|
658
|
+
const _PRP = "PutResourcePolicy";
|
|
659
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
660
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
661
|
+
const _Po = "Policy";
|
|
662
|
+
const _Pol = "Policies";
|
|
663
|
+
const _R = "Rule";
|
|
535
664
|
const _RC = "RecordingConfig";
|
|
665
|
+
const _RCe = "ReflectionConfiguration";
|
|
536
666
|
const _RHC = "RequestHeaderConfiguration";
|
|
537
667
|
const _RLEE = "ResourceLimitExceededException";
|
|
538
668
|
const _RNFE = "ResourceNotFoundException";
|
|
669
|
+
const _RS = "RatingScale";
|
|
670
|
+
const _Re = "Resource";
|
|
539
671
|
const _S = "Secret";
|
|
540
672
|
const _SC = "S3Configuration";
|
|
541
673
|
const _SCO = "SemanticConsolidationOverride";
|
|
542
674
|
const _SCOu = "SummaryConsolidationOverride";
|
|
675
|
+
const _SCa = "SamplingConfig";
|
|
676
|
+
const _SCe = "SessionConfig";
|
|
543
677
|
const _SCt = "StrategyConfiguration";
|
|
544
678
|
const _SD = "SchemaDefinition";
|
|
545
679
|
const _SE = "ServiceException";
|
|
@@ -562,6 +696,9 @@ const _SOPCIl = "SlackOauth2ProviderConfigInput";
|
|
|
562
696
|
const _SOPCO = "SalesforceOauth2ProviderConfigOutput";
|
|
563
697
|
const _SOPCOl = "SlackOauth2ProviderConfigOutput";
|
|
564
698
|
const _SP = "SchemaProperties";
|
|
699
|
+
const _SPG = "StartPolicyGeneration";
|
|
700
|
+
const _SPGR = "StartPolicyGenerationRequest";
|
|
701
|
+
const _SPGRt = "StartPolicyGenerationResponse";
|
|
565
702
|
const _SQEE = "ServiceQuotaExceededException";
|
|
566
703
|
const _STVCMK = "SetTokenVaultCMK";
|
|
567
704
|
const _STVCMKR = "SetTokenVaultCMKRequest";
|
|
@@ -597,6 +734,9 @@ const _UARERp = "UpdateAgentRuntimeEndpointResponse";
|
|
|
597
734
|
const _UARR = "UpdateAgentRuntimeRequest";
|
|
598
735
|
const _UARRp = "UpdateAgentRuntimeResponse";
|
|
599
736
|
const _UE = "UnauthorizedException";
|
|
737
|
+
const _UER = "UpdateEvaluatorRequest";
|
|
738
|
+
const _UERp = "UpdateEvaluatorResponse";
|
|
739
|
+
const _UEp = "UpdateEvaluator";
|
|
600
740
|
const _UG = "UpdateGateway";
|
|
601
741
|
const _UGR = "UpdateGatewayRequest";
|
|
602
742
|
const _UGRp = "UpdateGatewayResponse";
|
|
@@ -609,12 +749,21 @@ const _UMO = "UpdateMemoryOutput";
|
|
|
609
749
|
const _UOCP = "UpdateOauth2CredentialProvider";
|
|
610
750
|
const _UOCPR = "UpdateOauth2CredentialProviderRequest";
|
|
611
751
|
const _UOCPRp = "UpdateOauth2CredentialProviderResponse";
|
|
752
|
+
const _UOEC = "UpdateOnlineEvaluationConfig";
|
|
753
|
+
const _UOECR = "UpdateOnlineEvaluationConfigRequest";
|
|
754
|
+
const _UOECRp = "UpdateOnlineEvaluationConfigResponse";
|
|
755
|
+
const _UP = "UpdatePolicy";
|
|
612
756
|
const _UPCO = "UserPreferenceConsolidationOverride";
|
|
757
|
+
const _UPE = "UpdatePolicyEngine";
|
|
613
758
|
const _UPEO = "UserPreferenceExtractionOverride";
|
|
759
|
+
const _UPER = "UpdatePolicyEngineRequest";
|
|
760
|
+
const _UPERp = "UpdatePolicyEngineResponse";
|
|
614
761
|
const _UPMSI = "UserPreferenceMemoryStrategyInput";
|
|
615
762
|
const _UPOCCI = "UserPreferenceOverrideConsolidationConfigurationInput";
|
|
616
763
|
const _UPOCI = "UserPreferenceOverrideConfigurationInput";
|
|
617
764
|
const _UPOECI = "UserPreferenceOverrideExtractionConfigurationInput";
|
|
765
|
+
const _UPR = "UpdatePolicyRequest";
|
|
766
|
+
const _UPRp = "UpdatePolicyResponse";
|
|
618
767
|
const _UR = "UntagResource";
|
|
619
768
|
const _URR = "UntagResourceRequest";
|
|
620
769
|
const _URRn = "UntagResourceResponse";
|
|
@@ -631,11 +780,15 @@ const _WIT = "WorkloadIdentityType";
|
|
|
631
780
|
const _a = "arn";
|
|
632
781
|
const _aA = "allowedAudience";
|
|
633
782
|
const _aC = "authorizerConfiguration";
|
|
783
|
+
const _aCMV = "authorizingClaimMatchValue";
|
|
634
784
|
const _aCl = "allowedClients";
|
|
635
785
|
const _aE = "authorizationEndpoint";
|
|
786
|
+
const _aG = "apiGateway";
|
|
787
|
+
const _aGTC = "apiGatewayToolConfiguration";
|
|
636
788
|
const _aK = "apiKey";
|
|
637
789
|
const _aKCP = "apiKeyCredentialProvider";
|
|
638
790
|
const _aKSA = "apiKeySecretArn";
|
|
791
|
+
const _aMRF = "additionalModelRequestFields";
|
|
639
792
|
const _aMS = "addMemoryStrategies";
|
|
640
793
|
const _aOPC = "atlassianOauth2ProviderConfig";
|
|
641
794
|
const _aR = "agentRuntimes";
|
|
@@ -646,20 +799,24 @@ const _aRI = "agentRuntimeId";
|
|
|
646
799
|
const _aRN = "agentRuntimeName";
|
|
647
800
|
const _aRORU = "allowedResourceOauth2ReturnUrls";
|
|
648
801
|
const _aRV = "agentRuntimeVersion";
|
|
802
|
+
const _aS = "allowedScopes";
|
|
649
803
|
const _aSM = "authorizationServerMetadata";
|
|
650
804
|
const _aT = "authorizerType";
|
|
651
805
|
const _aTP = "appendToPrompt";
|
|
652
806
|
const _b = "bucket";
|
|
653
807
|
const _bA = "browserArn";
|
|
808
|
+
const _bEMC = "bedrockEvaluatorModelConfig";
|
|
654
809
|
const _bI = "browserId";
|
|
655
810
|
const _bOAI = "bucketOwnerAccountId";
|
|
656
811
|
const _bS = "browserSigning";
|
|
657
812
|
const _bSr = "browserSummaries";
|
|
813
|
+
const _bV = "booleanValue";
|
|
658
814
|
const _c = "client";
|
|
659
815
|
const _cA = "createdAt";
|
|
660
|
-
const _cC = "
|
|
816
|
+
const _cC = "customClaims";
|
|
661
817
|
const _cCC = "customConsolidationConfiguration";
|
|
662
|
-
const _cCo = "
|
|
818
|
+
const _cCo = "containerConfiguration";
|
|
819
|
+
const _cCod = "codeConfiguration";
|
|
663
820
|
const _cEC = "customExtractionConfiguration";
|
|
664
821
|
const _cI = "clientId";
|
|
665
822
|
const _cIA = "codeInterpreterArn";
|
|
@@ -667,7 +824,9 @@ const _cII = "codeInterpreterId";
|
|
|
667
824
|
const _cIS = "codeInterpreterSummaries";
|
|
668
825
|
const _cJWTA = "customJWTAuthorizer";
|
|
669
826
|
const _cL = "credentialLocation";
|
|
827
|
+
const _cMO = "claimMatchOperator";
|
|
670
828
|
const _cMS = "customMemoryStrategy";
|
|
829
|
+
const _cMV = "claimMatchValue";
|
|
671
830
|
const _cOPC = "customOauth2ProviderConfig";
|
|
672
831
|
const _cP = "credentialProvider";
|
|
673
832
|
const _cPA = "credentialProviderArn";
|
|
@@ -678,44 +837,74 @@ const _cPV = "credentialProviderVendor";
|
|
|
678
837
|
const _cPr = "credentialPrefix";
|
|
679
838
|
const _cPre = "credentialProviders";
|
|
680
839
|
const _cPu = "customParameters";
|
|
840
|
+
const _cRC = "customReflectionConfiguration";
|
|
681
841
|
const _cS = "clientSecret";
|
|
682
842
|
const _cSA = "clientSecretArn";
|
|
683
843
|
const _cT = "createdTime";
|
|
684
844
|
const _cTl = "clientToken";
|
|
685
845
|
const _cU = "containerUri";
|
|
686
846
|
const _cUa = "callbackUrl";
|
|
847
|
+
const _cWC = "cloudWatchConfig";
|
|
848
|
+
const _cWL = "cloudWatchLogs";
|
|
849
|
+
const _ca = "categorical";
|
|
850
|
+
const _ce = "cedar";
|
|
687
851
|
const _co = "code";
|
|
688
852
|
const _con = "configuration";
|
|
689
853
|
const _cons = "consolidation";
|
|
854
|
+
const _cont = "content";
|
|
690
855
|
const _d = "description";
|
|
691
856
|
const _dMS = "deleteMemoryStrategies";
|
|
857
|
+
const _dRU = "defaultReturnUrl";
|
|
858
|
+
const _dSC = "dataSourceConfig";
|
|
692
859
|
const _dU = "discoveryUrl";
|
|
860
|
+
const _dV = "doubleValue";
|
|
861
|
+
const _de = "definition";
|
|
693
862
|
const _e = "error";
|
|
863
|
+
const _eA = "evaluatorArn";
|
|
864
|
+
const _eC = "evaluatorConfig";
|
|
865
|
+
const _eCO = "episodicConsolidationOverride";
|
|
694
866
|
const _eED = "eventExpiryDuration";
|
|
867
|
+
const _eEO = "episodicExtractionOverride";
|
|
868
|
+
const _eERA = "evaluationExecutionRoleArn";
|
|
869
|
+
const _eI = "evaluatorId";
|
|
695
870
|
const _eKA = "encryptionKeyArn";
|
|
696
871
|
const _eL = "exceptionLevel";
|
|
872
|
+
const _eMS = "episodicMemoryStrategy";
|
|
697
873
|
const _eN = "endpointName";
|
|
874
|
+
const _eNv = "evaluatorName";
|
|
875
|
+
const _eO = "episodicOverride";
|
|
876
|
+
const _eOC = "enableOnCreate";
|
|
698
877
|
const _eP = "entryPoint";
|
|
699
878
|
const _eRA = "executionRoleArn";
|
|
879
|
+
const _eRC = "episodicReflectionConfiguration";
|
|
880
|
+
const _eRO = "episodicReflectionOverride";
|
|
881
|
+
const _eS = "executionStatus";
|
|
882
|
+
const _eT = "evaluatorType";
|
|
700
883
|
const _eV = "environmentVariables";
|
|
701
884
|
const _en = "enabled";
|
|
702
885
|
const _end = "endpoint";
|
|
886
|
+
const _ev = "evaluators";
|
|
703
887
|
const _ex = "extraction";
|
|
888
|
+
const _f = "findings";
|
|
704
889
|
const _fL = "fieldList";
|
|
890
|
+
const _fP = "filterPath";
|
|
705
891
|
const _fR = "failureReason";
|
|
892
|
+
const _fi = "filters";
|
|
706
893
|
const _gA = "gatewayArn";
|
|
707
894
|
const _gI = "gatewayId";
|
|
708
895
|
const _gIa = "gatewayIdentifier";
|
|
709
896
|
const _gOPC = "googleOauth2ProviderConfig";
|
|
710
897
|
const _gOPCi = "githubOauth2ProviderConfig";
|
|
898
|
+
const _gT = "grantType";
|
|
711
899
|
const _gU = "gatewayUrl";
|
|
712
900
|
const _h = "http";
|
|
713
901
|
const _hCWS = "historicalContextWindowSize";
|
|
714
902
|
const _hE = "httpError";
|
|
715
903
|
const _hQ = "httpQuery";
|
|
716
904
|
const _i = "id";
|
|
717
|
-
const _iC = "
|
|
718
|
-
const _iCn = "
|
|
905
|
+
const _iC = "inferenceConfig";
|
|
906
|
+
const _iCn = "interceptorConfigurations";
|
|
907
|
+
const _iCnp = "inputConfiguration";
|
|
719
908
|
const _iCnv = "invocationConfiguration";
|
|
720
909
|
const _iOPC = "includedOauth2ProviderConfig";
|
|
721
910
|
const _iP = "interceptionPoints";
|
|
@@ -724,28 +913,38 @@ const _iRST = "idleRuntimeSessionTimeout";
|
|
|
724
913
|
const _iS = "inputSchema";
|
|
725
914
|
const _iST = "idleSessionTimeout";
|
|
726
915
|
const _iT = "idempotencyToken";
|
|
916
|
+
const _iTCN = "inboundTokenClaimName";
|
|
917
|
+
const _iTCVT = "inboundTokenClaimValueType";
|
|
727
918
|
const _in = "interceptor";
|
|
728
919
|
const _ins = "instructions";
|
|
729
920
|
const _is = "issuer";
|
|
730
921
|
const _it = "items";
|
|
922
|
+
const _k = "key";
|
|
731
923
|
const _kC = "kmsConfiguration";
|
|
732
924
|
const _kKA = "kmsKeyArn";
|
|
733
925
|
const _kT = "keyType";
|
|
734
|
-
const _l = "
|
|
926
|
+
const _l = "label";
|
|
735
927
|
const _lA = "lambdaArn";
|
|
928
|
+
const _lAAJ = "llmAsAJudge";
|
|
736
929
|
const _lC = "lifecycleConfiguration";
|
|
930
|
+
const _lFM = "lockedForModification";
|
|
931
|
+
const _lGN = "logGroupNames";
|
|
932
|
+
const _lGNo = "logGroupName";
|
|
737
933
|
const _lMD = "lastModifiedDate";
|
|
738
934
|
const _lOPC = "linkedinOauth2ProviderConfig";
|
|
739
935
|
const _lSA = "lastSynchronizedAt";
|
|
740
936
|
const _lUA = "lastUpdatedAt";
|
|
741
937
|
const _lUT = "lastUpdatedTime";
|
|
742
938
|
const _lV = "liveVersion";
|
|
939
|
+
const _la = "lambda";
|
|
940
|
+
const _le = "level";
|
|
743
941
|
const _m = "message";
|
|
744
942
|
const _mBT = "messageBasedTrigger";
|
|
745
|
-
const _mC = "
|
|
943
|
+
const _mC = "modelConfig";
|
|
944
|
+
const _mCe = "messageCount";
|
|
746
945
|
const _mERA = "memoryExecutionRoleArn";
|
|
747
|
-
const _mI = "
|
|
748
|
-
const
|
|
946
|
+
const _mI = "modelId";
|
|
947
|
+
const _mIe = "memoryId";
|
|
749
948
|
const _mL = "maxLifetime";
|
|
750
949
|
const _mMS = "modifyMemoryStrategies";
|
|
751
950
|
const _mOPC = "microsoftOauth2ProviderConfig";
|
|
@@ -753,42 +952,79 @@ const _mR = "maxResults";
|
|
|
753
952
|
const _mS = "memoryStrategies";
|
|
754
953
|
const _mSI = "memoryStrategyId";
|
|
755
954
|
const _mSc = "mcpServer";
|
|
955
|
+
const _mT = "maxTokens";
|
|
956
|
+
const _mVS = "matchValueString";
|
|
957
|
+
const _mVSL = "matchValueStringList";
|
|
756
958
|
const _mc = "mcp";
|
|
757
|
-
const _me = "
|
|
758
|
-
const _mem = "
|
|
959
|
+
const _me = "methods";
|
|
960
|
+
const _mem = "memory";
|
|
961
|
+
const _memo = "memories";
|
|
962
|
+
const _met = "method";
|
|
963
|
+
const _mo = "mode";
|
|
759
964
|
const _n = "name";
|
|
760
965
|
const _nC = "networkConfiguration";
|
|
761
966
|
const _nM = "networkMode";
|
|
762
967
|
const _nMC = "networkModeConfig";
|
|
763
968
|
const _nT = "nextToken";
|
|
764
969
|
const _na = "namespaces";
|
|
970
|
+
const _nu = "numerical";
|
|
971
|
+
const _o = "operator";
|
|
765
972
|
const _oAS = "openApiSchema";
|
|
973
|
+
const _oC = "outputConfig";
|
|
766
974
|
const _oCP = "oauthCredentialProvider";
|
|
767
975
|
const _oD = "oauthDiscovery";
|
|
976
|
+
const _oEC = "onlineEvaluationConfigs";
|
|
977
|
+
const _oECA = "onlineEvaluationConfigArn";
|
|
978
|
+
const _oECI = "onlineEvaluationConfigId";
|
|
979
|
+
const _oECN = "onlineEvaluationConfigName";
|
|
768
980
|
const _oPCI = "oauth2ProviderConfigInput";
|
|
769
981
|
const _oPCO = "oauth2ProviderConfigOutput";
|
|
770
982
|
const _oS = "outputSchema";
|
|
771
|
-
const _p = "
|
|
772
|
-
const _pA = "
|
|
983
|
+
const _p = "path";
|
|
984
|
+
const _pA = "policyArn";
|
|
985
|
+
const _pAr = "providerArn";
|
|
773
986
|
const _pC = "protocolConfiguration";
|
|
774
987
|
const _pDBN = "payloadDeliveryBucketName";
|
|
988
|
+
const _pE = "policyEngines";
|
|
989
|
+
const _pEA = "policyEngineArn";
|
|
990
|
+
const _pEC = "policyEngineConfiguration";
|
|
991
|
+
const _pEI = "policyEngineId";
|
|
992
|
+
const _pG = "policyGenerations";
|
|
993
|
+
const _pGA = "policyGenerationArn";
|
|
994
|
+
const _pGAI = "policyGenerationAssetId";
|
|
995
|
+
const _pGAo = "policyGenerationAssets";
|
|
996
|
+
const _pGI = "policyGenerationId";
|
|
997
|
+
const _pI = "policyId";
|
|
775
998
|
const _pRH = "passRequestHeaders";
|
|
776
999
|
const _pT = "protocolType";
|
|
777
|
-
const
|
|
1000
|
+
const _po = "policy";
|
|
1001
|
+
const _pol = "policies";
|
|
1002
|
+
const _pr = "prefix";
|
|
1003
|
+
const _pro = "properties";
|
|
778
1004
|
const _r = "runtime";
|
|
779
1005
|
const _rA = "roleArn";
|
|
1006
|
+
const _rAI = "restApiId";
|
|
780
1007
|
const _rAe = "resourceArn";
|
|
1008
|
+
const _rC = "reflectionConfiguration";
|
|
781
1009
|
const _rE = "runtimeEndpoints";
|
|
782
1010
|
const _rHA = "requestHeaderAllowlist";
|
|
783
1011
|
const _rHC = "requestHeaderConfiguration";
|
|
1012
|
+
const _rS = "ratingScale";
|
|
784
1013
|
const _rT = "responseTypes";
|
|
1014
|
+
const _rTF = "rawTextFragment";
|
|
1015
|
+
const _rTa = "rawText";
|
|
785
1016
|
const _re = "recording";
|
|
786
1017
|
const _rea = "reason";
|
|
1018
|
+
const _ref = "reflection";
|
|
787
1019
|
const _req = "required";
|
|
1020
|
+
const _res = "resource";
|
|
1021
|
+
const _ru = "rule";
|
|
788
1022
|
const _s = "status";
|
|
789
1023
|
const _sA = "secretArn";
|
|
1024
|
+
const _sC = "samplingConfig";
|
|
790
1025
|
const _sCO = "semanticConsolidationOverride";
|
|
791
1026
|
const _sCOu = "summaryConsolidationOverride";
|
|
1027
|
+
const _sCe = "sessionConfig";
|
|
792
1028
|
const _sEO = "semanticExtractionOverride";
|
|
793
1029
|
const _sG = "securityGroups";
|
|
794
1030
|
const _sI = "strategyId";
|
|
@@ -797,19 +1033,26 @@ const _sM = "smithyModel";
|
|
|
797
1033
|
const _sMC = "selfManagedConfiguration";
|
|
798
1034
|
const _sMS = "semanticMemoryStrategy";
|
|
799
1035
|
const _sMSu = "summaryMemoryStrategy";
|
|
1036
|
+
const _sN = "serviceNames";
|
|
800
1037
|
const _sO = "semanticOverride";
|
|
801
1038
|
const _sOPC = "slackOauth2ProviderConfig";
|
|
802
1039
|
const _sOPCa = "salesforceOauth2ProviderConfig";
|
|
803
1040
|
const _sOu = "summaryOverride";
|
|
804
1041
|
const _sP = "serverProtocol";
|
|
1042
|
+
const _sPa = "samplingPercentage";
|
|
805
1043
|
const _sR = "statusReasons";
|
|
1044
|
+
const _sS = "stopSequences";
|
|
806
1045
|
const _sT = "searchType";
|
|
1046
|
+
const _sTM = "sessionTimeoutMinutes";
|
|
807
1047
|
const _sV = "supportedVersions";
|
|
1048
|
+
const _sVt = "stringValue";
|
|
808
1049
|
const _s_ = "s3";
|
|
809
1050
|
const _sc = "scopes";
|
|
810
1051
|
const _se = "server";
|
|
811
1052
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcorecontrol";
|
|
812
|
-
const _st = "
|
|
1053
|
+
const _st = "stage";
|
|
1054
|
+
const _sta = "statement";
|
|
1055
|
+
const _str = "strategies";
|
|
813
1056
|
const _su = "subnets";
|
|
814
1057
|
const _t = "tags";
|
|
815
1058
|
const _tA = "topicArn";
|
|
@@ -820,14 +1063,19 @@ const _tCo = "tokenCount";
|
|
|
820
1063
|
const _tCr = "triggerConditions";
|
|
821
1064
|
const _tE = "tokenEndpoint";
|
|
822
1065
|
const _tEAM = "tokenEndpointAuthMethods";
|
|
1066
|
+
const _tF = "toolFilters";
|
|
823
1067
|
const _tI = "targetId";
|
|
824
1068
|
const _tIL = "targetIdList";
|
|
825
1069
|
const _tIe = "tenantId";
|
|
826
1070
|
const _tK = "tagKeys";
|
|
1071
|
+
const _tO = "toolOverrides";
|
|
1072
|
+
const _tP = "topP";
|
|
1073
|
+
const _tRS = "targetResourceScope";
|
|
827
1074
|
const _tS = "toolSchema";
|
|
828
1075
|
const _tV = "targetVersion";
|
|
829
1076
|
const _tVI = "tokenVaultId";
|
|
830
1077
|
const _ta = "targets";
|
|
1078
|
+
const _te = "temperature";
|
|
831
1079
|
const _ty = "type";
|
|
832
1080
|
const _u = "uri";
|
|
833
1081
|
const _uA = "updatedAt";
|
|
@@ -835,9 +1083,11 @@ const _uPCO = "userPreferenceConsolidationOverride";
|
|
|
835
1083
|
const _uPEO = "userPreferenceExtractionOverride";
|
|
836
1084
|
const _uPMS = "userPreferenceMemoryStrategy";
|
|
837
1085
|
const _uPO = "userPreferenceOverride";
|
|
838
|
-
const _v = "
|
|
1086
|
+
const _v = "value";
|
|
839
1087
|
const _vC = "vpcConfig";
|
|
840
1088
|
const _vI = "versionId";
|
|
1089
|
+
const _vM = "validationMode";
|
|
1090
|
+
const _ve = "version";
|
|
841
1091
|
const _wI = "workloadIdentities";
|
|
842
1092
|
const _wIA = "workloadIdentityArn";
|
|
843
1093
|
const _wID = "workloadIdentityDetails";
|
|
@@ -846,6 +1096,9 @@ var ApiKeyType = [0, n0, _AKT, 8, 0];
|
|
|
846
1096
|
var ClientSecretType = [0, n0, _CST, 8, 0];
|
|
847
1097
|
var Description = [0, n0, _D, 8, 0];
|
|
848
1098
|
var EndpointName = [0, n0, _EN, 8, 0];
|
|
1099
|
+
var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
|
|
1100
|
+
var EvaluatorDescription = [0, n0, _ED, 8, 0];
|
|
1101
|
+
var EvaluatorInstructions = [0, n0, _EI, 8, 0];
|
|
849
1102
|
var GatewayDescription = [0, n0, _GD, 8, 0];
|
|
850
1103
|
var GatewayName = [0, n0, _GN, 8, 0];
|
|
851
1104
|
var InlinePayload = [0, n0, _IP, 8, 0];
|
|
@@ -881,6 +1134,24 @@ var AgentRuntimeEndpoint = [
|
|
|
881
1134
|
[_n, _lV, _tV, _aREA, _aRA, _s, _i, _d, _cA, _lUA],
|
|
882
1135
|
[[() => EndpointName, 0], 0, 0, 0, 0, 0, 0, 0, 5, 5],
|
|
883
1136
|
];
|
|
1137
|
+
var ApiGatewayTargetConfiguration = [
|
|
1138
|
+
3,
|
|
1139
|
+
n0,
|
|
1140
|
+
_AGTC,
|
|
1141
|
+
0,
|
|
1142
|
+
[_rAI, _st, _aGTC],
|
|
1143
|
+
[0, 0, () => ApiGatewayToolConfiguration],
|
|
1144
|
+
];
|
|
1145
|
+
var ApiGatewayToolConfiguration = [
|
|
1146
|
+
3,
|
|
1147
|
+
n0,
|
|
1148
|
+
_AGTCp,
|
|
1149
|
+
0,
|
|
1150
|
+
[_tO, _tF],
|
|
1151
|
+
[() => ApiGatewayToolOverrides, () => ApiGatewayToolFilters],
|
|
1152
|
+
];
|
|
1153
|
+
var ApiGatewayToolFilter = [3, n0, _AGTF, 0, [_fP, _me], [0, 64 | 0]];
|
|
1154
|
+
var ApiGatewayToolOverride = [3, n0, _AGTO, 0, [_n, _d, _p, _met], [0, 0, 0, 0]];
|
|
884
1155
|
var ApiKeyCredentialProviderItem = [
|
|
885
1156
|
3,
|
|
886
1157
|
n0,
|
|
@@ -905,6 +1176,22 @@ var AtlassianOauth2ProviderConfigOutput = [
|
|
|
905
1176
|
[_oD, _cI],
|
|
906
1177
|
[() => Oauth2Discovery, 0],
|
|
907
1178
|
];
|
|
1179
|
+
var AuthorizingClaimMatchValueType = [
|
|
1180
|
+
3,
|
|
1181
|
+
n0,
|
|
1182
|
+
_ACMVT,
|
|
1183
|
+
0,
|
|
1184
|
+
[_cMV, _cMO],
|
|
1185
|
+
[() => ClaimMatchValueType, 0],
|
|
1186
|
+
];
|
|
1187
|
+
var BedrockEvaluatorModelConfig = [
|
|
1188
|
+
3,
|
|
1189
|
+
n0,
|
|
1190
|
+
_BEMC,
|
|
1191
|
+
0,
|
|
1192
|
+
[_mI, _iC, _aMRF],
|
|
1193
|
+
[0, () => InferenceConfiguration, 15],
|
|
1194
|
+
];
|
|
908
1195
|
var BrowserNetworkConfiguration = [3, n0, _BNC, 0, [_nM, _vC], [0, () => VpcConfig]];
|
|
909
1196
|
var BrowserSigningConfigInput = [3, n0, _BSCI, 0, [_en], [2]];
|
|
910
1197
|
var BrowserSigningConfigOutput = [3, n0, _BSCO, 0, [_en], [2]];
|
|
@@ -916,6 +1203,10 @@ var BrowserSummary = [
|
|
|
916
1203
|
[_bI, _bA, _n, _d, _s, _cA, _lUA],
|
|
917
1204
|
[0, 0, 0, [() => Description, 0], 0, 5, 5],
|
|
918
1205
|
];
|
|
1206
|
+
var CategoricalScaleDefinition = [3, n0, _CSD, 0, [_de, _l], [0, 0]];
|
|
1207
|
+
var CedarPolicy = [3, n0, _CP, 0, [_sta], [0]];
|
|
1208
|
+
var CloudWatchLogsInputConfig = [3, n0, _CWLIC, 0, [_lGN, _sN], [64 | 0, 64 | 0]];
|
|
1209
|
+
var CloudWatchOutputConfig = [3, n0, _CWOC, 0, [_lGNo], [0]];
|
|
919
1210
|
var CodeConfiguration = [3, n0, _CC, 0, [_co, _r, _eP], [() => Code, 0, 64 | 0]];
|
|
920
1211
|
var CodeInterpreterNetworkConfiguration = [
|
|
921
1212
|
3,
|
|
@@ -1053,12 +1344,21 @@ var CreateCodeInterpreterResponse = [
|
|
|
1053
1344
|
[_cII, _cIA, _cA, _s],
|
|
1054
1345
|
[0, 0, 5, 0],
|
|
1055
1346
|
];
|
|
1347
|
+
var CreateEvaluatorRequest = [
|
|
1348
|
+
3,
|
|
1349
|
+
n0,
|
|
1350
|
+
_CER,
|
|
1351
|
+
0,
|
|
1352
|
+
[_cTl, _eNv, _d, _eC, _le],
|
|
1353
|
+
[[0, 4], 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
|
|
1354
|
+
];
|
|
1355
|
+
var CreateEvaluatorResponse = [3, n0, _CERr, 0, [_eA, _eI, _cA, _s], [0, 0, 4, 0]];
|
|
1056
1356
|
var CreateGatewayRequest = [
|
|
1057
1357
|
3,
|
|
1058
1358
|
n0,
|
|
1059
1359
|
_CGR,
|
|
1060
1360
|
0,
|
|
1061
|
-
[_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
1361
|
+
[_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL, _t],
|
|
1062
1362
|
[
|
|
1063
1363
|
[() => GatewayName, 0],
|
|
1064
1364
|
[() => GatewayDescription, 0],
|
|
@@ -1070,6 +1370,7 @@ var CreateGatewayRequest = [
|
|
|
1070
1370
|
() => AuthorizerConfiguration,
|
|
1071
1371
|
0,
|
|
1072
1372
|
() => GatewayInterceptorConfigurations,
|
|
1373
|
+
() => GatewayPolicyEngineConfiguration,
|
|
1073
1374
|
0,
|
|
1074
1375
|
128 | 0,
|
|
1075
1376
|
],
|
|
@@ -1079,7 +1380,7 @@ var CreateGatewayResponse = [
|
|
|
1079
1380
|
n0,
|
|
1080
1381
|
_CGRr,
|
|
1081
1382
|
0,
|
|
1082
|
-
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
1383
|
+
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
|
|
1083
1384
|
[
|
|
1084
1385
|
0,
|
|
1085
1386
|
0,
|
|
@@ -1097,6 +1398,7 @@ var CreateGatewayResponse = [
|
|
|
1097
1398
|
() => AuthorizerConfiguration,
|
|
1098
1399
|
0,
|
|
1099
1400
|
() => GatewayInterceptorConfigurations,
|
|
1401
|
+
() => GatewayPolicyEngineConfiguration,
|
|
1100
1402
|
() => WorkloadIdentityDetails,
|
|
1101
1403
|
0,
|
|
1102
1404
|
],
|
|
@@ -1144,7 +1446,7 @@ var CreateMemoryInput = [
|
|
|
1144
1446
|
[_cTl, _n, _d, _eKA, _mERA, _eED, _mS, _t],
|
|
1145
1447
|
[[0, 4], 0, [() => Description, 0], 0, 0, 1, [() => MemoryStrategyInputList, 0], 128 | 0],
|
|
1146
1448
|
];
|
|
1147
|
-
var CreateMemoryOutput = [3, n0, _CMO, 0, [
|
|
1449
|
+
var CreateMemoryOutput = [3, n0, _CMO, 0, [_mem], [[() => Memory, 0]]];
|
|
1148
1450
|
var CreateOauth2CredentialProviderRequest = [
|
|
1149
1451
|
3,
|
|
1150
1452
|
n0,
|
|
@@ -1161,6 +1463,54 @@ var CreateOauth2CredentialProviderResponse = [
|
|
|
1161
1463
|
[_cSA, _n, _cPA, _cUa, _oPCO],
|
|
1162
1464
|
[() => Secret, 0, 0, 0, () => Oauth2ProviderConfigOutput],
|
|
1163
1465
|
];
|
|
1466
|
+
var CreateOnlineEvaluationConfigRequest = [
|
|
1467
|
+
3,
|
|
1468
|
+
n0,
|
|
1469
|
+
_COECR,
|
|
1470
|
+
0,
|
|
1471
|
+
[_cTl, _oECN, _d, _ru, _dSC, _ev, _eERA, _eOC],
|
|
1472
|
+
[[0, 4], 0, [() => EvaluationConfigDescription, 0], () => Rule, () => DataSourceConfig, () => EvaluatorList, 0, 2],
|
|
1473
|
+
];
|
|
1474
|
+
var CreateOnlineEvaluationConfigResponse = [
|
|
1475
|
+
3,
|
|
1476
|
+
n0,
|
|
1477
|
+
_COECRr,
|
|
1478
|
+
0,
|
|
1479
|
+
[_oECA, _oECI, _cA, _oC, _s, _eS, _fR],
|
|
1480
|
+
[0, 0, 4, () => OutputConfig, 0, 0, 0],
|
|
1481
|
+
];
|
|
1482
|
+
var CreatePolicyEngineRequest = [
|
|
1483
|
+
3,
|
|
1484
|
+
n0,
|
|
1485
|
+
_CPER,
|
|
1486
|
+
0,
|
|
1487
|
+
[_n, _d, _cTl],
|
|
1488
|
+
[0, [() => Description, 0], [0, 4]],
|
|
1489
|
+
];
|
|
1490
|
+
var CreatePolicyEngineResponse = [
|
|
1491
|
+
3,
|
|
1492
|
+
n0,
|
|
1493
|
+
_CPERr,
|
|
1494
|
+
0,
|
|
1495
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
1496
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1497
|
+
];
|
|
1498
|
+
var CreatePolicyRequest = [
|
|
1499
|
+
3,
|
|
1500
|
+
n0,
|
|
1501
|
+
_CPR,
|
|
1502
|
+
0,
|
|
1503
|
+
[_n, _de, _d, _vM, _pEI, _cTl],
|
|
1504
|
+
[0, () => PolicyDefinition, [() => Description, 0], 0, [0, 1], [0, 4]],
|
|
1505
|
+
];
|
|
1506
|
+
var CreatePolicyResponse = [
|
|
1507
|
+
3,
|
|
1508
|
+
n0,
|
|
1509
|
+
_CPRr,
|
|
1510
|
+
0,
|
|
1511
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
1512
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1513
|
+
];
|
|
1164
1514
|
var CreateWorkloadIdentityRequest = [
|
|
1165
1515
|
3,
|
|
1166
1516
|
n0,
|
|
@@ -1185,13 +1535,21 @@ var CredentialProviderConfiguration = [
|
|
|
1185
1535
|
[_cPT, _cP],
|
|
1186
1536
|
[0, [() => CredentialProvider, 0]],
|
|
1187
1537
|
];
|
|
1538
|
+
var CustomClaimValidationType = [
|
|
1539
|
+
3,
|
|
1540
|
+
n0,
|
|
1541
|
+
_CCVT,
|
|
1542
|
+
0,
|
|
1543
|
+
[_iTCN, _iTCVT, _aCMV],
|
|
1544
|
+
[0, 0, () => AuthorizingClaimMatchValueType],
|
|
1545
|
+
];
|
|
1188
1546
|
var CustomJWTAuthorizerConfiguration = [
|
|
1189
1547
|
3,
|
|
1190
1548
|
n0,
|
|
1191
1549
|
_CJWTAC,
|
|
1192
1550
|
0,
|
|
1193
|
-
[_dU, _aA, _aCl],
|
|
1194
|
-
[0, 64 | 0, 64 | 0],
|
|
1551
|
+
[_dU, _aA, _aCl, _aS, _cC],
|
|
1552
|
+
[0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType],
|
|
1195
1553
|
];
|
|
1196
1554
|
var CustomMemoryStrategyInput = [
|
|
1197
1555
|
3,
|
|
@@ -1311,6 +1669,8 @@ var DeleteCodeInterpreterRequest = [
|
|
|
1311
1669
|
],
|
|
1312
1670
|
];
|
|
1313
1671
|
var DeleteCodeInterpreterResponse = [3, n0, _DCIRe, 0, [_cII, _s, _lUA], [0, 0, 5]];
|
|
1672
|
+
var DeleteEvaluatorRequest = [3, n0, _DER, 0, [_eI], [[0, 1]]];
|
|
1673
|
+
var DeleteEvaluatorResponse = [3, n0, _DERe, 0, [_eA, _eI, _s], [0, 0, 0]];
|
|
1314
1674
|
var DeleteGatewayRequest = [3, n0, _DGR, 0, [_gIa], [[0, 1]]];
|
|
1315
1675
|
var DeleteGatewayResponse = [3, n0, _DGRe, 0, [_gI, _s, _sR], [0, 0, 64 | 0]];
|
|
1316
1676
|
var DeleteGatewayTargetRequest = [
|
|
@@ -1337,7 +1697,7 @@ var DeleteMemoryInput = [
|
|
|
1337
1697
|
n0,
|
|
1338
1698
|
_DMI,
|
|
1339
1699
|
0,
|
|
1340
|
-
[_cTl,
|
|
1700
|
+
[_cTl, _mIe],
|
|
1341
1701
|
[
|
|
1342
1702
|
[
|
|
1343
1703
|
0,
|
|
@@ -1349,10 +1709,49 @@ var DeleteMemoryInput = [
|
|
|
1349
1709
|
[0, 1],
|
|
1350
1710
|
],
|
|
1351
1711
|
];
|
|
1352
|
-
var DeleteMemoryOutput = [3, n0, _DMO, 0, [
|
|
1712
|
+
var DeleteMemoryOutput = [3, n0, _DMO, 0, [_mIe, _s], [0, 0]];
|
|
1353
1713
|
var DeleteMemoryStrategyInput = [3, n0, _DMSI, 0, [_mSI], [0]];
|
|
1354
1714
|
var DeleteOauth2CredentialProviderRequest = [3, n0, _DOCPR, 0, [_n], [0]];
|
|
1355
1715
|
var DeleteOauth2CredentialProviderResponse = [3, n0, _DOCPRe, 0, [], []];
|
|
1716
|
+
var DeleteOnlineEvaluationConfigRequest = [3, n0, _DOECR, 0, [_oECI], [[0, 1]]];
|
|
1717
|
+
var DeleteOnlineEvaluationConfigResponse = [
|
|
1718
|
+
3,
|
|
1719
|
+
n0,
|
|
1720
|
+
_DOECRe,
|
|
1721
|
+
0,
|
|
1722
|
+
[_oECA, _oECI, _s],
|
|
1723
|
+
[0, 0, 0],
|
|
1724
|
+
];
|
|
1725
|
+
var DeletePolicyEngineRequest = [3, n0, _DPER, 0, [_pEI], [[0, 1]]];
|
|
1726
|
+
var DeletePolicyEngineResponse = [
|
|
1727
|
+
3,
|
|
1728
|
+
n0,
|
|
1729
|
+
_DPERe,
|
|
1730
|
+
0,
|
|
1731
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
1732
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1733
|
+
];
|
|
1734
|
+
var DeletePolicyRequest = [
|
|
1735
|
+
3,
|
|
1736
|
+
n0,
|
|
1737
|
+
_DPR,
|
|
1738
|
+
0,
|
|
1739
|
+
[_pEI, _pI],
|
|
1740
|
+
[
|
|
1741
|
+
[0, 1],
|
|
1742
|
+
[0, 1],
|
|
1743
|
+
],
|
|
1744
|
+
];
|
|
1745
|
+
var DeletePolicyResponse = [
|
|
1746
|
+
3,
|
|
1747
|
+
n0,
|
|
1748
|
+
_DPRe,
|
|
1749
|
+
0,
|
|
1750
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
1751
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1752
|
+
];
|
|
1753
|
+
var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_rAe], [[0, 1]]];
|
|
1754
|
+
var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
|
|
1356
1755
|
var DeleteWorkloadIdentityRequest = [3, n0, _DWIR, 0, [_n], [0]];
|
|
1357
1756
|
var DeleteWorkloadIdentityResponse = [3, n0, _DWIRe, 0, [], []];
|
|
1358
1757
|
var EncryptionFailure = [
|
|
@@ -1367,12 +1766,78 @@ var EncryptionFailure = [
|
|
|
1367
1766
|
[0],
|
|
1368
1767
|
];
|
|
1369
1768
|
schema.TypeRegistry.for(n0).registerError(EncryptionFailure, EncryptionFailure$1);
|
|
1769
|
+
var EpisodicConsolidationOverride = [3, n0, _ECO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
1770
|
+
var EpisodicExtractionOverride = [3, n0, _EEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
1771
|
+
var EpisodicMemoryStrategyInput = [
|
|
1772
|
+
3,
|
|
1773
|
+
n0,
|
|
1774
|
+
_EMSI,
|
|
1775
|
+
0,
|
|
1776
|
+
[_n, _d, _na, _rC],
|
|
1777
|
+
[0, [() => Description, 0], 64 | 0, () => EpisodicReflectionConfigurationInput],
|
|
1778
|
+
];
|
|
1779
|
+
var EpisodicOverrideConfigurationInput = [
|
|
1780
|
+
3,
|
|
1781
|
+
n0,
|
|
1782
|
+
_EOCI,
|
|
1783
|
+
0,
|
|
1784
|
+
[_ex, _cons, _ref],
|
|
1785
|
+
[
|
|
1786
|
+
[() => EpisodicOverrideExtractionConfigurationInput, 0],
|
|
1787
|
+
[() => EpisodicOverrideConsolidationConfigurationInput, 0],
|
|
1788
|
+
[() => EpisodicOverrideReflectionConfigurationInput, 0],
|
|
1789
|
+
],
|
|
1790
|
+
];
|
|
1791
|
+
var EpisodicOverrideConsolidationConfigurationInput = [
|
|
1792
|
+
3,
|
|
1793
|
+
n0,
|
|
1794
|
+
_EOCCI,
|
|
1795
|
+
0,
|
|
1796
|
+
[_aTP, _mI],
|
|
1797
|
+
[[() => Prompt, 0], 0],
|
|
1798
|
+
];
|
|
1799
|
+
var EpisodicOverrideExtractionConfigurationInput = [
|
|
1800
|
+
3,
|
|
1801
|
+
n0,
|
|
1802
|
+
_EOECI,
|
|
1803
|
+
0,
|
|
1804
|
+
[_aTP, _mI],
|
|
1805
|
+
[[() => Prompt, 0], 0],
|
|
1806
|
+
];
|
|
1807
|
+
var EpisodicOverrideReflectionConfigurationInput = [
|
|
1808
|
+
3,
|
|
1809
|
+
n0,
|
|
1810
|
+
_EORCI,
|
|
1811
|
+
0,
|
|
1812
|
+
[_aTP, _mI, _na],
|
|
1813
|
+
[[() => Prompt, 0], 0, 64 | 0],
|
|
1814
|
+
];
|
|
1815
|
+
var EpisodicReflectionConfiguration = [3, n0, _ERC, 0, [_na], [64 | 0]];
|
|
1816
|
+
var EpisodicReflectionConfigurationInput = [3, n0, _ERCI, 0, [_na], [64 | 0]];
|
|
1817
|
+
var EpisodicReflectionOverride = [
|
|
1818
|
+
3,
|
|
1819
|
+
n0,
|
|
1820
|
+
_ERO,
|
|
1821
|
+
0,
|
|
1822
|
+
[_aTP, _mI, _na],
|
|
1823
|
+
[[() => Prompt, 0], 0, 64 | 0],
|
|
1824
|
+
];
|
|
1825
|
+
var EvaluatorSummary = [
|
|
1826
|
+
3,
|
|
1827
|
+
n0,
|
|
1828
|
+
_ES,
|
|
1829
|
+
0,
|
|
1830
|
+
[_eA, _eI, _eNv, _d, _eT, _le, _s, _cA, _uA, _lFM],
|
|
1831
|
+
[0, 0, 0, [() => EvaluatorDescription, 0], 0, 0, 0, 4, 4, 2],
|
|
1832
|
+
];
|
|
1833
|
+
var Filter = [3, n0, _F, 0, [_k, _o, _v], [0, 0, () => FilterValue]];
|
|
1834
|
+
var Finding = [3, n0, _Fi, 0, [_ty, _d], [0, 0]];
|
|
1370
1835
|
var GatewayApiKeyCredentialProvider = [
|
|
1371
1836
|
3,
|
|
1372
1837
|
n0,
|
|
1373
1838
|
_GAKCP,
|
|
1374
1839
|
0,
|
|
1375
|
-
[
|
|
1840
|
+
[_pAr, _cPN, _cPr, _cL],
|
|
1376
1841
|
[0, 0, 0, 0],
|
|
1377
1842
|
];
|
|
1378
1843
|
var GatewayInterceptorConfiguration = [
|
|
@@ -1380,9 +1845,10 @@ var GatewayInterceptorConfiguration = [
|
|
|
1380
1845
|
n0,
|
|
1381
1846
|
_GIC,
|
|
1382
1847
|
0,
|
|
1383
|
-
[_in, _iP,
|
|
1848
|
+
[_in, _iP, _iCnp],
|
|
1384
1849
|
[() => InterceptorConfiguration, 64 | 0, () => InterceptorInputConfiguration],
|
|
1385
1850
|
];
|
|
1851
|
+
var GatewayPolicyEngineConfiguration = [3, n0, _GPEC, 0, [_a, _mo], [0, 0]];
|
|
1386
1852
|
var GatewaySummary = [
|
|
1387
1853
|
3,
|
|
1388
1854
|
n0,
|
|
@@ -1441,7 +1907,7 @@ var GetAgentRuntimeRequest = [
|
|
|
1441
1907
|
[
|
|
1442
1908
|
0,
|
|
1443
1909
|
{
|
|
1444
|
-
[_hQ]:
|
|
1910
|
+
[_hQ]: _ve,
|
|
1445
1911
|
},
|
|
1446
1912
|
],
|
|
1447
1913
|
],
|
|
@@ -1451,7 +1917,7 @@ var GetAgentRuntimeResponse = [
|
|
|
1451
1917
|
n0,
|
|
1452
1918
|
_GARRe,
|
|
1453
1919
|
0,
|
|
1454
|
-
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
|
|
1920
|
+
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
|
|
1455
1921
|
[
|
|
1456
1922
|
0,
|
|
1457
1923
|
0,
|
|
@@ -1463,6 +1929,7 @@ var GetAgentRuntimeResponse = [
|
|
|
1463
1929
|
() => NetworkConfiguration,
|
|
1464
1930
|
0,
|
|
1465
1931
|
() => LifecycleConfiguration,
|
|
1932
|
+
0,
|
|
1466
1933
|
[() => Description, 0],
|
|
1467
1934
|
() => WorkloadIdentityDetails,
|
|
1468
1935
|
() => AgentRuntimeArtifact,
|
|
@@ -1512,13 +1979,22 @@ var GetCodeInterpreterResponse = [
|
|
|
1512
1979
|
[_cII, _cIA, _n, _d, _eRA, _nC, _s, _fR, _cA, _lUA],
|
|
1513
1980
|
[0, 0, 0, [() => Description, 0], 0, () => CodeInterpreterNetworkConfiguration, 0, 0, 5, 5],
|
|
1514
1981
|
];
|
|
1982
|
+
var GetEvaluatorRequest = [3, n0, _GER, 0, [_eI], [[0, 1]]];
|
|
1983
|
+
var GetEvaluatorResponse = [
|
|
1984
|
+
3,
|
|
1985
|
+
n0,
|
|
1986
|
+
_GERe,
|
|
1987
|
+
0,
|
|
1988
|
+
[_eA, _eI, _eNv, _d, _eC, _le, _s, _cA, _uA, _lFM],
|
|
1989
|
+
[0, 0, 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0, 0, 4, 4, 2],
|
|
1990
|
+
];
|
|
1515
1991
|
var GetGatewayRequest = [3, n0, _GGR, 0, [_gIa], [[0, 1]]];
|
|
1516
1992
|
var GetGatewayResponse = [
|
|
1517
1993
|
3,
|
|
1518
1994
|
n0,
|
|
1519
1995
|
_GGRe,
|
|
1520
1996
|
0,
|
|
1521
|
-
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
1997
|
+
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
|
|
1522
1998
|
[
|
|
1523
1999
|
0,
|
|
1524
2000
|
0,
|
|
@@ -1536,6 +2012,7 @@ var GetGatewayResponse = [
|
|
|
1536
2012
|
() => AuthorizerConfiguration,
|
|
1537
2013
|
0,
|
|
1538
2014
|
() => GatewayInterceptorConfigurations,
|
|
2015
|
+
() => GatewayPolicyEngineConfiguration,
|
|
1539
2016
|
() => WorkloadIdentityDetails,
|
|
1540
2017
|
0,
|
|
1541
2018
|
],
|
|
@@ -1571,8 +2048,8 @@ var GetGatewayTargetResponse = [
|
|
|
1571
2048
|
5,
|
|
1572
2049
|
],
|
|
1573
2050
|
];
|
|
1574
|
-
var GetMemoryInput = [3, n0, _GMI, 0, [
|
|
1575
|
-
var GetMemoryOutput = [3, n0, _GMO, 0, [
|
|
2051
|
+
var GetMemoryInput = [3, n0, _GMI, 0, [_mIe], [[0, 1]]];
|
|
2052
|
+
var GetMemoryOutput = [3, n0, _GMO, 0, [_mem], [[() => Memory, 0]]];
|
|
1576
2053
|
var GetOauth2CredentialProviderRequest = [3, n0, _GOCPR, 0, [_n], [0]];
|
|
1577
2054
|
var GetOauth2CredentialProviderResponse = [
|
|
1578
2055
|
3,
|
|
@@ -1582,6 +2059,79 @@ var GetOauth2CredentialProviderResponse = [
|
|
|
1582
2059
|
[_cSA, _n, _cPA, _cPV, _cUa, _oPCO, _cT, _lUT],
|
|
1583
2060
|
[() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
|
|
1584
2061
|
];
|
|
2062
|
+
var GetOnlineEvaluationConfigRequest = [3, n0, _GOECR, 0, [_oECI], [[0, 1]]];
|
|
2063
|
+
var GetOnlineEvaluationConfigResponse = [
|
|
2064
|
+
3,
|
|
2065
|
+
n0,
|
|
2066
|
+
_GOECRe,
|
|
2067
|
+
0,
|
|
2068
|
+
[_oECA, _oECI, _oECN, _d, _ru, _dSC, _ev, _oC, _eERA, _s, _eS, _cA, _uA, _fR],
|
|
2069
|
+
[
|
|
2070
|
+
0,
|
|
2071
|
+
0,
|
|
2072
|
+
0,
|
|
2073
|
+
[() => EvaluationConfigDescription, 0],
|
|
2074
|
+
() => Rule,
|
|
2075
|
+
() => DataSourceConfig,
|
|
2076
|
+
() => EvaluatorList,
|
|
2077
|
+
() => OutputConfig,
|
|
2078
|
+
0,
|
|
2079
|
+
0,
|
|
2080
|
+
0,
|
|
2081
|
+
4,
|
|
2082
|
+
4,
|
|
2083
|
+
0,
|
|
2084
|
+
],
|
|
2085
|
+
];
|
|
2086
|
+
var GetPolicyEngineRequest = [3, n0, _GPER, 0, [_pEI], [[0, 1]]];
|
|
2087
|
+
var GetPolicyEngineResponse = [
|
|
2088
|
+
3,
|
|
2089
|
+
n0,
|
|
2090
|
+
_GPERe,
|
|
2091
|
+
0,
|
|
2092
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
2093
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
2094
|
+
];
|
|
2095
|
+
var GetPolicyGenerationRequest = [
|
|
2096
|
+
3,
|
|
2097
|
+
n0,
|
|
2098
|
+
_GPGR,
|
|
2099
|
+
0,
|
|
2100
|
+
[_pGI, _pEI],
|
|
2101
|
+
[
|
|
2102
|
+
[0, 1],
|
|
2103
|
+
[0, 1],
|
|
2104
|
+
],
|
|
2105
|
+
];
|
|
2106
|
+
var GetPolicyGenerationResponse = [
|
|
2107
|
+
3,
|
|
2108
|
+
n0,
|
|
2109
|
+
_GPGRe,
|
|
2110
|
+
0,
|
|
2111
|
+
[_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
|
|
2112
|
+
[0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
|
|
2113
|
+
];
|
|
2114
|
+
var GetPolicyRequest = [
|
|
2115
|
+
3,
|
|
2116
|
+
n0,
|
|
2117
|
+
_GPR,
|
|
2118
|
+
0,
|
|
2119
|
+
[_pEI, _pI],
|
|
2120
|
+
[
|
|
2121
|
+
[0, 1],
|
|
2122
|
+
[0, 1],
|
|
2123
|
+
],
|
|
2124
|
+
];
|
|
2125
|
+
var GetPolicyResponse = [
|
|
2126
|
+
3,
|
|
2127
|
+
n0,
|
|
2128
|
+
_GPRe,
|
|
2129
|
+
0,
|
|
2130
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
2131
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
2132
|
+
];
|
|
2133
|
+
var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_rAe], [[0, 1]]];
|
|
2134
|
+
var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_po], [0]];
|
|
1585
2135
|
var GetTokenVaultRequest = [3, n0, _GTVR, 0, [_tVI], [0]];
|
|
1586
2136
|
var GetTokenVaultResponse = [
|
|
1587
2137
|
3,
|
|
@@ -1648,6 +2198,7 @@ var IncludedOauth2ProviderConfigOutput = [
|
|
|
1648
2198
|
[_oD, _cI],
|
|
1649
2199
|
[() => Oauth2Discovery, 0],
|
|
1650
2200
|
];
|
|
2201
|
+
var InferenceConfiguration = [3, n0, _IC, 0, [_mT, _te, _tP, _sS], [1, 1, 1, 64 | 0]];
|
|
1651
2202
|
var InterceptorInputConfiguration = [3, n0, _IIC, 0, [_pRH], [2]];
|
|
1652
2203
|
var InternalServerException = [
|
|
1653
2204
|
-3,
|
|
@@ -1661,7 +2212,7 @@ var InternalServerException = [
|
|
|
1661
2212
|
[0],
|
|
1662
2213
|
];
|
|
1663
2214
|
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1664
|
-
var InvocationConfiguration = [3, n0,
|
|
2215
|
+
var InvocationConfiguration = [3, n0, _ICn, 0, [_tA, _pDBN], [0, 0]];
|
|
1665
2216
|
var InvocationConfigurationInput = [3, n0, _ICI, 0, [_tA, _pDBN], [0, 0]];
|
|
1666
2217
|
var KmsConfiguration = [3, n0, _KC, 0, [_kT, _kKA], [0, 0]];
|
|
1667
2218
|
var LambdaInterceptorConfiguration = [3, n0, _LIC, 0, [_a], [0]];
|
|
@@ -1850,6 +2401,35 @@ var ListCodeInterpretersResponse = [
|
|
|
1850
2401
|
[_cIS, _nT],
|
|
1851
2402
|
[[() => CodeInterpreterSummaries, 0], 0],
|
|
1852
2403
|
];
|
|
2404
|
+
var ListEvaluatorsRequest = [
|
|
2405
|
+
3,
|
|
2406
|
+
n0,
|
|
2407
|
+
_LER,
|
|
2408
|
+
0,
|
|
2409
|
+
[_nT, _mR],
|
|
2410
|
+
[
|
|
2411
|
+
[
|
|
2412
|
+
0,
|
|
2413
|
+
{
|
|
2414
|
+
[_hQ]: _nT,
|
|
2415
|
+
},
|
|
2416
|
+
],
|
|
2417
|
+
[
|
|
2418
|
+
1,
|
|
2419
|
+
{
|
|
2420
|
+
[_hQ]: _mR,
|
|
2421
|
+
},
|
|
2422
|
+
],
|
|
2423
|
+
],
|
|
2424
|
+
];
|
|
2425
|
+
var ListEvaluatorsResponse = [
|
|
2426
|
+
3,
|
|
2427
|
+
n0,
|
|
2428
|
+
_LERi,
|
|
2429
|
+
0,
|
|
2430
|
+
[_ev, _nT],
|
|
2431
|
+
[[() => EvaluatorSummaryList, 0], 0],
|
|
2432
|
+
];
|
|
1853
2433
|
var ListGatewaysRequest = [
|
|
1854
2434
|
3,
|
|
1855
2435
|
n0,
|
|
@@ -1910,7 +2490,7 @@ var ListGatewayTargetsResponse = [
|
|
|
1910
2490
|
[[() => TargetSummaries, 0], 0],
|
|
1911
2491
|
];
|
|
1912
2492
|
var ListMemoriesInput = [3, n0, _LMI, 0, [_mR, _nT], [1, 0]];
|
|
1913
|
-
var ListMemoriesOutput = [3, n0, _LMO, 0, [
|
|
2493
|
+
var ListMemoriesOutput = [3, n0, _LMO, 0, [_memo, _nT], [() => MemorySummaryList, 0]];
|
|
1914
2494
|
var ListOauth2CredentialProvidersRequest = [3, n0, _LOCPR, 0, [_nT, _mR], [0, 1]];
|
|
1915
2495
|
var ListOauth2CredentialProvidersResponse = [
|
|
1916
2496
|
3,
|
|
@@ -1920,72 +2500,228 @@ var ListOauth2CredentialProvidersResponse = [
|
|
|
1920
2500
|
[_cPre, _nT],
|
|
1921
2501
|
[() => Oauth2CredentialProviders, 0],
|
|
1922
2502
|
];
|
|
1923
|
-
var
|
|
1924
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1925
|
-
var ListWorkloadIdentitiesRequest = [3, n0, _LWIR, 0, [_nT, _mR], [0, 1]];
|
|
1926
|
-
var ListWorkloadIdentitiesResponse = [
|
|
1927
|
-
3,
|
|
1928
|
-
n0,
|
|
1929
|
-
_LWIRi,
|
|
1930
|
-
0,
|
|
1931
|
-
[_wI, _nT],
|
|
1932
|
-
[() => WorkloadIdentityList, 0],
|
|
1933
|
-
];
|
|
1934
|
-
var MCPGatewayConfiguration = [3, n0, _MCPGC, 0, [_sV, _ins, _sT], [64 | 0, 0, 0]];
|
|
1935
|
-
var McpLambdaTargetConfiguration = [3, n0, _MLTC, 0, [_lA, _tS], [0, () => ToolSchema]];
|
|
1936
|
-
var McpServerTargetConfiguration = [3, n0, _MSTC, 0, [_end], [0]];
|
|
1937
|
-
var Memory = [
|
|
2503
|
+
var ListOnlineEvaluationConfigsRequest = [
|
|
1938
2504
|
3,
|
|
1939
2505
|
n0,
|
|
1940
|
-
|
|
2506
|
+
_LOECR,
|
|
1941
2507
|
0,
|
|
1942
|
-
[
|
|
1943
|
-
[
|
|
2508
|
+
[_nT, _mR],
|
|
2509
|
+
[
|
|
2510
|
+
[
|
|
2511
|
+
0,
|
|
2512
|
+
{
|
|
2513
|
+
[_hQ]: _nT,
|
|
2514
|
+
},
|
|
2515
|
+
],
|
|
2516
|
+
[
|
|
2517
|
+
1,
|
|
2518
|
+
{
|
|
2519
|
+
[_hQ]: _mR,
|
|
2520
|
+
},
|
|
2521
|
+
],
|
|
2522
|
+
],
|
|
1944
2523
|
];
|
|
1945
|
-
var
|
|
2524
|
+
var ListOnlineEvaluationConfigsResponse = [
|
|
1946
2525
|
3,
|
|
1947
2526
|
n0,
|
|
1948
|
-
|
|
2527
|
+
_LOECRi,
|
|
1949
2528
|
0,
|
|
1950
|
-
[
|
|
1951
|
-
[
|
|
2529
|
+
[_oEC, _nT],
|
|
2530
|
+
[[() => OnlineEvaluationConfigSummaryList, 0], 0],
|
|
1952
2531
|
];
|
|
1953
|
-
var
|
|
1954
|
-
var MessageBasedTrigger = [3, n0, _MBT, 0, [_mC], [1]];
|
|
1955
|
-
var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [_mC], [1]];
|
|
1956
|
-
var MicrosoftOauth2ProviderConfigInput = [
|
|
2532
|
+
var ListPoliciesRequest = [
|
|
1957
2533
|
3,
|
|
1958
2534
|
n0,
|
|
1959
|
-
|
|
2535
|
+
_LPR,
|
|
1960
2536
|
0,
|
|
1961
|
-
[
|
|
1962
|
-
[
|
|
2537
|
+
[_nT, _mR, _pEI, _tRS],
|
|
2538
|
+
[
|
|
2539
|
+
[
|
|
2540
|
+
0,
|
|
2541
|
+
{
|
|
2542
|
+
[_hQ]: _nT,
|
|
2543
|
+
},
|
|
2544
|
+
],
|
|
2545
|
+
[
|
|
2546
|
+
1,
|
|
2547
|
+
{
|
|
2548
|
+
[_hQ]: _mR,
|
|
2549
|
+
},
|
|
2550
|
+
],
|
|
2551
|
+
[0, 1],
|
|
2552
|
+
[
|
|
2553
|
+
0,
|
|
2554
|
+
{
|
|
2555
|
+
[_hQ]: _tRS,
|
|
2556
|
+
},
|
|
2557
|
+
],
|
|
2558
|
+
],
|
|
1963
2559
|
];
|
|
1964
|
-
var
|
|
2560
|
+
var ListPoliciesResponse = [3, n0, _LPRi, 0, [_pol, _nT], [[() => Policies, 0], 0]];
|
|
2561
|
+
var ListPolicyEnginesRequest = [
|
|
1965
2562
|
3,
|
|
1966
2563
|
n0,
|
|
1967
|
-
|
|
2564
|
+
_LPER,
|
|
1968
2565
|
0,
|
|
1969
|
-
[
|
|
1970
|
-
[
|
|
2566
|
+
[_nT, _mR],
|
|
2567
|
+
[
|
|
2568
|
+
[
|
|
2569
|
+
0,
|
|
2570
|
+
{
|
|
2571
|
+
[_hQ]: _nT,
|
|
2572
|
+
},
|
|
2573
|
+
],
|
|
2574
|
+
[
|
|
2575
|
+
1,
|
|
2576
|
+
{
|
|
2577
|
+
[_hQ]: _mR,
|
|
2578
|
+
},
|
|
2579
|
+
],
|
|
2580
|
+
],
|
|
1971
2581
|
];
|
|
1972
|
-
var
|
|
1973
|
-
var ModifyMemoryStrategies = [
|
|
2582
|
+
var ListPolicyEnginesResponse = [
|
|
1974
2583
|
3,
|
|
1975
2584
|
n0,
|
|
1976
|
-
|
|
2585
|
+
_LPERi,
|
|
1977
2586
|
0,
|
|
1978
|
-
[
|
|
1979
|
-
[[() =>
|
|
2587
|
+
[_pE, _nT],
|
|
2588
|
+
[[() => PolicyEngines, 0], 0],
|
|
1980
2589
|
];
|
|
1981
|
-
var
|
|
2590
|
+
var ListPolicyGenerationAssetsRequest = [
|
|
1982
2591
|
3,
|
|
1983
2592
|
n0,
|
|
1984
|
-
|
|
2593
|
+
_LPGAR,
|
|
1985
2594
|
0,
|
|
1986
|
-
[
|
|
1987
|
-
[
|
|
1988
|
-
]
|
|
2595
|
+
[_pGI, _pEI, _nT, _mR],
|
|
2596
|
+
[
|
|
2597
|
+
[0, 1],
|
|
2598
|
+
[0, 1],
|
|
2599
|
+
[
|
|
2600
|
+
0,
|
|
2601
|
+
{
|
|
2602
|
+
[_hQ]: _nT,
|
|
2603
|
+
},
|
|
2604
|
+
],
|
|
2605
|
+
[
|
|
2606
|
+
1,
|
|
2607
|
+
{
|
|
2608
|
+
[_hQ]: _mR,
|
|
2609
|
+
},
|
|
2610
|
+
],
|
|
2611
|
+
],
|
|
2612
|
+
];
|
|
2613
|
+
var ListPolicyGenerationAssetsResponse = [
|
|
2614
|
+
3,
|
|
2615
|
+
n0,
|
|
2616
|
+
_LPGARi,
|
|
2617
|
+
0,
|
|
2618
|
+
[_pGAo, _nT],
|
|
2619
|
+
[() => PolicyGenerationAssets, 0],
|
|
2620
|
+
];
|
|
2621
|
+
var ListPolicyGenerationsRequest = [
|
|
2622
|
+
3,
|
|
2623
|
+
n0,
|
|
2624
|
+
_LPGR,
|
|
2625
|
+
0,
|
|
2626
|
+
[_nT, _mR, _pEI],
|
|
2627
|
+
[
|
|
2628
|
+
[
|
|
2629
|
+
0,
|
|
2630
|
+
{
|
|
2631
|
+
[_hQ]: _nT,
|
|
2632
|
+
},
|
|
2633
|
+
],
|
|
2634
|
+
[
|
|
2635
|
+
1,
|
|
2636
|
+
{
|
|
2637
|
+
[_hQ]: _mR,
|
|
2638
|
+
},
|
|
2639
|
+
],
|
|
2640
|
+
[0, 1],
|
|
2641
|
+
],
|
|
2642
|
+
];
|
|
2643
|
+
var ListPolicyGenerationsResponse = [
|
|
2644
|
+
3,
|
|
2645
|
+
n0,
|
|
2646
|
+
_LPGRi,
|
|
2647
|
+
0,
|
|
2648
|
+
[_pG, _nT],
|
|
2649
|
+
[() => PolicyGenerations, 0],
|
|
2650
|
+
];
|
|
2651
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
2652
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
2653
|
+
var ListWorkloadIdentitiesRequest = [3, n0, _LWIR, 0, [_nT, _mR], [0, 1]];
|
|
2654
|
+
var ListWorkloadIdentitiesResponse = [
|
|
2655
|
+
3,
|
|
2656
|
+
n0,
|
|
2657
|
+
_LWIRi,
|
|
2658
|
+
0,
|
|
2659
|
+
[_wI, _nT],
|
|
2660
|
+
[() => WorkloadIdentityList, 0],
|
|
2661
|
+
];
|
|
2662
|
+
var LlmAsAJudgeEvaluatorConfig = [
|
|
2663
|
+
3,
|
|
2664
|
+
n0,
|
|
2665
|
+
_LAAJEC,
|
|
2666
|
+
0,
|
|
2667
|
+
[_ins, _rS, _mC],
|
|
2668
|
+
[[() => EvaluatorInstructions, 0], () => RatingScale, () => EvaluatorModelConfig],
|
|
2669
|
+
];
|
|
2670
|
+
var MCPGatewayConfiguration = [3, n0, _MCPGC, 0, [_sV, _ins, _sT], [64 | 0, 0, 0]];
|
|
2671
|
+
var McpLambdaTargetConfiguration = [3, n0, _MLTC, 0, [_lA, _tS], [0, () => ToolSchema]];
|
|
2672
|
+
var McpServerTargetConfiguration = [3, n0, _MSTC, 0, [_end], [0]];
|
|
2673
|
+
var Memory = [
|
|
2674
|
+
3,
|
|
2675
|
+
n0,
|
|
2676
|
+
_M,
|
|
2677
|
+
0,
|
|
2678
|
+
[_a, _i, _n, _d, _eKA, _mERA, _eED, _s, _fR, _cA, _uA, _str],
|
|
2679
|
+
[0, 0, 0, [() => Description, 0], 0, 0, 1, 0, 0, 4, 4, [() => MemoryStrategyList, 0]],
|
|
2680
|
+
];
|
|
2681
|
+
var MemoryStrategy = [
|
|
2682
|
+
3,
|
|
2683
|
+
n0,
|
|
2684
|
+
_MS,
|
|
2685
|
+
0,
|
|
2686
|
+
[_sI, _n, _d, _con, _ty, _na, _cA, _uA, _s],
|
|
2687
|
+
[0, 0, [() => Description, 0], [() => StrategyConfiguration, 0], 0, 64 | 0, 4, 4, 0],
|
|
2688
|
+
];
|
|
2689
|
+
var MemorySummary = [3, n0, _MSe, 0, [_a, _i, _s, _cA, _uA], [0, 0, 0, 4, 4]];
|
|
2690
|
+
var MessageBasedTrigger = [3, n0, _MBT, 0, [_mCe], [1]];
|
|
2691
|
+
var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [_mCe], [1]];
|
|
2692
|
+
var MicrosoftOauth2ProviderConfigInput = [
|
|
2693
|
+
3,
|
|
2694
|
+
n0,
|
|
2695
|
+
_MOPCI,
|
|
2696
|
+
0,
|
|
2697
|
+
[_cI, _cS, _tIe],
|
|
2698
|
+
[0, [() => ClientSecretType, 0], 0],
|
|
2699
|
+
];
|
|
2700
|
+
var MicrosoftOauth2ProviderConfigOutput = [
|
|
2701
|
+
3,
|
|
2702
|
+
n0,
|
|
2703
|
+
_MOPCO,
|
|
2704
|
+
0,
|
|
2705
|
+
[_oD, _cI],
|
|
2706
|
+
[() => Oauth2Discovery, 0],
|
|
2707
|
+
];
|
|
2708
|
+
var ModifyInvocationConfigurationInput = [3, n0, _MICI, 0, [_tA, _pDBN], [0, 0]];
|
|
2709
|
+
var ModifyMemoryStrategies = [
|
|
2710
|
+
3,
|
|
2711
|
+
n0,
|
|
2712
|
+
_MMS,
|
|
2713
|
+
0,
|
|
2714
|
+
[_aMS, _mMS, _dMS],
|
|
2715
|
+
[[() => MemoryStrategyInputList, 0], [() => ModifyMemoryStrategiesList, 0], () => DeleteMemoryStrategiesList],
|
|
2716
|
+
];
|
|
2717
|
+
var ModifyMemoryStrategyInput = [
|
|
2718
|
+
3,
|
|
2719
|
+
n0,
|
|
2720
|
+
_MMSI,
|
|
2721
|
+
0,
|
|
2722
|
+
[_mSI, _d, _na, _con],
|
|
2723
|
+
[0, [() => Description, 0], 64 | 0, [() => ModifyStrategyConfiguration, 0]],
|
|
2724
|
+
];
|
|
1989
2725
|
var ModifySelfManagedConfiguration = [
|
|
1990
2726
|
3,
|
|
1991
2727
|
n0,
|
|
@@ -1999,14 +2735,16 @@ var ModifyStrategyConfiguration = [
|
|
|
1999
2735
|
n0,
|
|
2000
2736
|
_MSC,
|
|
2001
2737
|
0,
|
|
2002
|
-
[_ex, _cons, _sMC],
|
|
2738
|
+
[_ex, _cons, _ref, _sMC],
|
|
2003
2739
|
[
|
|
2004
2740
|
[() => ModifyExtractionConfiguration, 0],
|
|
2005
2741
|
[() => ModifyConsolidationConfiguration, 0],
|
|
2742
|
+
[() => ModifyReflectionConfiguration, 0],
|
|
2006
2743
|
() => ModifySelfManagedConfiguration,
|
|
2007
2744
|
],
|
|
2008
2745
|
];
|
|
2009
2746
|
var NetworkConfiguration = [3, n0, _NC, 0, [_nM, _nMC], [0, () => VpcConfig]];
|
|
2747
|
+
var NumericalScaleDefinition = [3, n0, _NSD, 0, [_de, _v, _l], [0, 1, 0]];
|
|
2010
2748
|
var Oauth2AuthorizationServerMetadata = [
|
|
2011
2749
|
3,
|
|
2012
2750
|
n0,
|
|
@@ -2028,10 +2766,53 @@ var OAuthCredentialProvider = [
|
|
|
2028
2766
|
n0,
|
|
2029
2767
|
_OACP,
|
|
2030
2768
|
0,
|
|
2031
|
-
[
|
|
2032
|
-
[0, 64 | 0, [() => OAuthCustomParameters, 0]],
|
|
2769
|
+
[_pAr, _sc, _cPu, _gT, _dRU],
|
|
2770
|
+
[0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0],
|
|
2771
|
+
];
|
|
2772
|
+
var OnlineEvaluationConfigSummary = [
|
|
2773
|
+
3,
|
|
2774
|
+
n0,
|
|
2775
|
+
_OECS,
|
|
2776
|
+
0,
|
|
2777
|
+
[_oECA, _oECI, _oECN, _d, _s, _eS, _cA, _uA, _fR],
|
|
2778
|
+
[0, 0, 0, [() => EvaluationConfigDescription, 0], 0, 0, 4, 4, 0],
|
|
2779
|
+
];
|
|
2780
|
+
var OutputConfig = [3, n0, _OC, 0, [_cWC], [() => CloudWatchOutputConfig]];
|
|
2781
|
+
var Policy = [
|
|
2782
|
+
3,
|
|
2783
|
+
n0,
|
|
2784
|
+
_Po,
|
|
2785
|
+
0,
|
|
2786
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
2787
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
2788
|
+
];
|
|
2789
|
+
var PolicyEngine = [
|
|
2790
|
+
3,
|
|
2791
|
+
n0,
|
|
2792
|
+
_PE,
|
|
2793
|
+
0,
|
|
2794
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
2795
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
2796
|
+
];
|
|
2797
|
+
var PolicyGeneration = [
|
|
2798
|
+
3,
|
|
2799
|
+
n0,
|
|
2800
|
+
_PG,
|
|
2801
|
+
0,
|
|
2802
|
+
[_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
|
|
2803
|
+
[0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
|
|
2804
|
+
];
|
|
2805
|
+
var PolicyGenerationAsset = [
|
|
2806
|
+
3,
|
|
2807
|
+
n0,
|
|
2808
|
+
_PGA,
|
|
2809
|
+
0,
|
|
2810
|
+
[_pGAI, _de, _rTF, _f],
|
|
2811
|
+
[0, () => PolicyDefinition, 0, () => Findings],
|
|
2033
2812
|
];
|
|
2034
2813
|
var ProtocolConfiguration = [3, n0, _PC, 0, [_sP], [0]];
|
|
2814
|
+
var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_rAe, _po], [[0, 1], 0]];
|
|
2815
|
+
var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [_po], [0]];
|
|
2035
2816
|
var RecordingConfig = [3, n0, _RC, 0, [_en, _sL], [2, () => S3Location]];
|
|
2036
2817
|
var ResourceLimitExceededException = [
|
|
2037
2818
|
-3,
|
|
@@ -2057,8 +2838,16 @@ var ResourceNotFoundException = [
|
|
|
2057
2838
|
[0],
|
|
2058
2839
|
];
|
|
2059
2840
|
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
2841
|
+
var Rule = [
|
|
2842
|
+
3,
|
|
2843
|
+
n0,
|
|
2844
|
+
_R,
|
|
2845
|
+
0,
|
|
2846
|
+
[_sC, _fi, _sCe],
|
|
2847
|
+
[() => SamplingConfig, () => FilterList, () => SessionConfig],
|
|
2848
|
+
];
|
|
2060
2849
|
var S3Configuration = [3, n0, _SC, 0, [_u, _bOAI], [0, 0]];
|
|
2061
|
-
var S3Location = [3, n0, _SL, 0, [_b,
|
|
2850
|
+
var S3Location = [3, n0, _SL, 0, [_b, _pr, _vI], [0, 0, 0]];
|
|
2062
2851
|
var SalesforceOauth2ProviderConfigInput = [
|
|
2063
2852
|
3,
|
|
2064
2853
|
n0,
|
|
@@ -2075,12 +2864,13 @@ var SalesforceOauth2ProviderConfigOutput = [
|
|
|
2075
2864
|
[_oD, _cI],
|
|
2076
2865
|
[() => Oauth2Discovery, 0],
|
|
2077
2866
|
];
|
|
2867
|
+
var SamplingConfig = [3, n0, _SCa, 0, [_sPa], [1]];
|
|
2078
2868
|
var SchemaDefinition = [
|
|
2079
2869
|
3,
|
|
2080
2870
|
n0,
|
|
2081
2871
|
_SD,
|
|
2082
2872
|
0,
|
|
2083
|
-
[_ty,
|
|
2873
|
+
[_ty, _pro, _req, _it, _d],
|
|
2084
2874
|
[0, () => SchemaProperties, 64 | 0, () => SchemaDefinition, 0],
|
|
2085
2875
|
];
|
|
2086
2876
|
var Secret = [3, n0, _S, 0, [_sA], [0]];
|
|
@@ -2100,15 +2890,8 @@ var SelfManagedConfigurationInput = [
|
|
|
2100
2890
|
[_tCr, _iCnv, _hCWS],
|
|
2101
2891
|
[() => TriggerConditionInputList, () => InvocationConfigurationInput, 1],
|
|
2102
2892
|
];
|
|
2103
|
-
var SemanticConsolidationOverride = [
|
|
2104
|
-
|
|
2105
|
-
n0,
|
|
2106
|
-
_SCO,
|
|
2107
|
-
0,
|
|
2108
|
-
[_aTP, _mIo],
|
|
2109
|
-
[[() => Prompt, 0], 0],
|
|
2110
|
-
];
|
|
2111
|
-
var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mIo], [[() => Prompt, 0], 0]];
|
|
2893
|
+
var SemanticConsolidationOverride = [3, n0, _SCO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
2894
|
+
var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
2112
2895
|
var SemanticMemoryStrategyInput = [
|
|
2113
2896
|
3,
|
|
2114
2897
|
n0,
|
|
@@ -2133,7 +2916,7 @@ var SemanticOverrideConsolidationConfigurationInput = [
|
|
|
2133
2916
|
n0,
|
|
2134
2917
|
_SOCCI,
|
|
2135
2918
|
0,
|
|
2136
|
-
[_aTP,
|
|
2919
|
+
[_aTP, _mI],
|
|
2137
2920
|
[[() => Prompt, 0], 0],
|
|
2138
2921
|
];
|
|
2139
2922
|
var SemanticOverrideExtractionConfigurationInput = [
|
|
@@ -2141,7 +2924,7 @@ var SemanticOverrideExtractionConfigurationInput = [
|
|
|
2141
2924
|
n0,
|
|
2142
2925
|
_SOECI,
|
|
2143
2926
|
0,
|
|
2144
|
-
[_aTP,
|
|
2927
|
+
[_aTP, _mI],
|
|
2145
2928
|
[[() => Prompt, 0], 0],
|
|
2146
2929
|
];
|
|
2147
2930
|
var ServiceException = [
|
|
@@ -2168,6 +2951,7 @@ var ServiceQuotaExceededException = [
|
|
|
2168
2951
|
[0],
|
|
2169
2952
|
];
|
|
2170
2953
|
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
2954
|
+
var SessionConfig = [3, n0, _SCe, 0, [_sTM], [1]];
|
|
2171
2955
|
var SetTokenVaultCMKRequest = [
|
|
2172
2956
|
3,
|
|
2173
2957
|
n0,
|
|
@@ -2200,22 +2984,37 @@ var SlackOauth2ProviderConfigOutput = [
|
|
|
2200
2984
|
[_oD, _cI],
|
|
2201
2985
|
[() => Oauth2Discovery, 0],
|
|
2202
2986
|
];
|
|
2203
|
-
var
|
|
2987
|
+
var StartPolicyGenerationRequest = [
|
|
2204
2988
|
3,
|
|
2205
2989
|
n0,
|
|
2206
|
-
|
|
2990
|
+
_SPGR,
|
|
2207
2991
|
0,
|
|
2208
|
-
[
|
|
2209
|
-
[0,
|
|
2992
|
+
[_pEI, _res, _cont, _n, _cTl],
|
|
2993
|
+
[[0, 1], () => Resource, () => Content, 0, [0, 4]],
|
|
2210
2994
|
];
|
|
2211
|
-
var
|
|
2995
|
+
var StartPolicyGenerationResponse = [
|
|
2212
2996
|
3,
|
|
2213
2997
|
n0,
|
|
2214
|
-
|
|
2998
|
+
_SPGRt,
|
|
2215
2999
|
0,
|
|
2216
|
-
[
|
|
2217
|
-
[
|
|
3000
|
+
[_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
|
|
3001
|
+
[0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
|
|
3002
|
+
];
|
|
3003
|
+
var StrategyConfiguration = [
|
|
3004
|
+
3,
|
|
3005
|
+
n0,
|
|
3006
|
+
_SCt,
|
|
3007
|
+
0,
|
|
3008
|
+
[_ty, _ex, _cons, _ref, _sMC],
|
|
3009
|
+
[
|
|
3010
|
+
0,
|
|
3011
|
+
[() => ExtractionConfiguration, 0],
|
|
3012
|
+
[() => ConsolidationConfiguration, 0],
|
|
3013
|
+
[() => ReflectionConfiguration, 0],
|
|
3014
|
+
() => SelfManagedConfiguration,
|
|
3015
|
+
],
|
|
2218
3016
|
];
|
|
3017
|
+
var SummaryConsolidationOverride = [3, n0, _SCOu, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
2219
3018
|
var SummaryMemoryStrategyInput = [
|
|
2220
3019
|
3,
|
|
2221
3020
|
n0,
|
|
@@ -2237,7 +3036,7 @@ var SummaryOverrideConsolidationConfigurationInput = [
|
|
|
2237
3036
|
n0,
|
|
2238
3037
|
_SOCCIu,
|
|
2239
3038
|
0,
|
|
2240
|
-
[_aTP,
|
|
3039
|
+
[_aTP, _mI],
|
|
2241
3040
|
[[() => Prompt, 0], 0],
|
|
2242
3041
|
];
|
|
2243
3042
|
var SynchronizeGatewayTargetsRequest = [3, n0, _SGTR, 0, [_gIa, _tIL], [[0, 1], 64 | 0]];
|
|
@@ -2384,12 +3183,21 @@ var UpdateApiKeyCredentialProviderResponse = [
|
|
|
2384
3183
|
[_aKSA, _n, _cPA, _cT, _lUT],
|
|
2385
3184
|
[() => Secret, 0, 0, 4, 4],
|
|
2386
3185
|
];
|
|
3186
|
+
var UpdateEvaluatorRequest = [
|
|
3187
|
+
3,
|
|
3188
|
+
n0,
|
|
3189
|
+
_UER,
|
|
3190
|
+
0,
|
|
3191
|
+
[_cTl, _eI, _d, _eC, _le],
|
|
3192
|
+
[[0, 4], [0, 1], [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
|
|
3193
|
+
];
|
|
3194
|
+
var UpdateEvaluatorResponse = [3, n0, _UERp, 0, [_eA, _eI, _uA, _s], [0, 0, 4, 0]];
|
|
2387
3195
|
var UpdateGatewayRequest = [
|
|
2388
3196
|
3,
|
|
2389
3197
|
n0,
|
|
2390
3198
|
_UGR,
|
|
2391
3199
|
0,
|
|
2392
|
-
[_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
3200
|
+
[_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL],
|
|
2393
3201
|
[
|
|
2394
3202
|
[0, 1],
|
|
2395
3203
|
[() => GatewayName, 0],
|
|
@@ -2401,6 +3209,7 @@ var UpdateGatewayRequest = [
|
|
|
2401
3209
|
() => AuthorizerConfiguration,
|
|
2402
3210
|
0,
|
|
2403
3211
|
() => GatewayInterceptorConfigurations,
|
|
3212
|
+
() => GatewayPolicyEngineConfiguration,
|
|
2404
3213
|
0,
|
|
2405
3214
|
],
|
|
2406
3215
|
];
|
|
@@ -2409,7 +3218,7 @@ var UpdateGatewayResponse = [
|
|
|
2409
3218
|
n0,
|
|
2410
3219
|
_UGRp,
|
|
2411
3220
|
0,
|
|
2412
|
-
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
3221
|
+
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
|
|
2413
3222
|
[
|
|
2414
3223
|
0,
|
|
2415
3224
|
0,
|
|
@@ -2427,6 +3236,7 @@ var UpdateGatewayResponse = [
|
|
|
2427
3236
|
() => AuthorizerConfiguration,
|
|
2428
3237
|
0,
|
|
2429
3238
|
() => GatewayInterceptorConfigurations,
|
|
3239
|
+
() => GatewayPolicyEngineConfiguration,
|
|
2430
3240
|
() => WorkloadIdentityDetails,
|
|
2431
3241
|
0,
|
|
2432
3242
|
],
|
|
@@ -2471,10 +3281,10 @@ var UpdateMemoryInput = [
|
|
|
2471
3281
|
n0,
|
|
2472
3282
|
_UMI,
|
|
2473
3283
|
0,
|
|
2474
|
-
[_cTl,
|
|
3284
|
+
[_cTl, _mIe, _d, _eED, _mERA, _mS],
|
|
2475
3285
|
[[0, 4], [0, 1], [() => Description, 0], 1, 0, [() => ModifyMemoryStrategies, 0]],
|
|
2476
3286
|
];
|
|
2477
|
-
var UpdateMemoryOutput = [3, n0, _UMO, 0, [
|
|
3287
|
+
var UpdateMemoryOutput = [3, n0, _UMO, 0, [_mem], [[() => Memory, 0]]];
|
|
2478
3288
|
var UpdateOauth2CredentialProviderRequest = [
|
|
2479
3289
|
3,
|
|
2480
3290
|
n0,
|
|
@@ -2491,6 +3301,66 @@ var UpdateOauth2CredentialProviderResponse = [
|
|
|
2491
3301
|
[_cSA, _n, _cPV, _cPA, _cUa, _oPCO, _cT, _lUT],
|
|
2492
3302
|
[() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
|
|
2493
3303
|
];
|
|
3304
|
+
var UpdateOnlineEvaluationConfigRequest = [
|
|
3305
|
+
3,
|
|
3306
|
+
n0,
|
|
3307
|
+
_UOECR,
|
|
3308
|
+
0,
|
|
3309
|
+
[_cTl, _oECI, _d, _ru, _dSC, _ev, _eERA, _eS],
|
|
3310
|
+
[
|
|
3311
|
+
[0, 4],
|
|
3312
|
+
[0, 1],
|
|
3313
|
+
[() => EvaluationConfigDescription, 0],
|
|
3314
|
+
() => Rule,
|
|
3315
|
+
() => DataSourceConfig,
|
|
3316
|
+
() => EvaluatorList,
|
|
3317
|
+
0,
|
|
3318
|
+
0,
|
|
3319
|
+
],
|
|
3320
|
+
];
|
|
3321
|
+
var UpdateOnlineEvaluationConfigResponse = [
|
|
3322
|
+
3,
|
|
3323
|
+
n0,
|
|
3324
|
+
_UOECRp,
|
|
3325
|
+
0,
|
|
3326
|
+
[_oECA, _oECI, _uA, _s, _eS, _fR],
|
|
3327
|
+
[0, 0, 4, 0, 0, 0],
|
|
3328
|
+
];
|
|
3329
|
+
var UpdatePolicyEngineRequest = [
|
|
3330
|
+
3,
|
|
3331
|
+
n0,
|
|
3332
|
+
_UPER,
|
|
3333
|
+
0,
|
|
3334
|
+
[_pEI, _d],
|
|
3335
|
+
[
|
|
3336
|
+
[0, 1],
|
|
3337
|
+
[() => Description, 0],
|
|
3338
|
+
],
|
|
3339
|
+
];
|
|
3340
|
+
var UpdatePolicyEngineResponse = [
|
|
3341
|
+
3,
|
|
3342
|
+
n0,
|
|
3343
|
+
_UPERp,
|
|
3344
|
+
0,
|
|
3345
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
3346
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
3347
|
+
];
|
|
3348
|
+
var UpdatePolicyRequest = [
|
|
3349
|
+
3,
|
|
3350
|
+
n0,
|
|
3351
|
+
_UPR,
|
|
3352
|
+
0,
|
|
3353
|
+
[_pEI, _pI, _d, _de, _vM],
|
|
3354
|
+
[[0, 1], [0, 1], [() => Description, 0], () => PolicyDefinition, 0],
|
|
3355
|
+
];
|
|
3356
|
+
var UpdatePolicyResponse = [
|
|
3357
|
+
3,
|
|
3358
|
+
n0,
|
|
3359
|
+
_UPRp,
|
|
3360
|
+
0,
|
|
3361
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
3362
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
3363
|
+
];
|
|
2494
3364
|
var UpdateWorkloadIdentityRequest = [3, n0, _UWIR, 0, [_n, _aRORU], [0, 64 | 0]];
|
|
2495
3365
|
var UpdateWorkloadIdentityResponse = [
|
|
2496
3366
|
3,
|
|
@@ -2505,7 +3375,7 @@ var UserPreferenceConsolidationOverride = [
|
|
|
2505
3375
|
n0,
|
|
2506
3376
|
_UPCO,
|
|
2507
3377
|
0,
|
|
2508
|
-
[_aTP,
|
|
3378
|
+
[_aTP, _mI],
|
|
2509
3379
|
[[() => Prompt, 0], 0],
|
|
2510
3380
|
];
|
|
2511
3381
|
var UserPreferenceExtractionOverride = [
|
|
@@ -2513,7 +3383,7 @@ var UserPreferenceExtractionOverride = [
|
|
|
2513
3383
|
n0,
|
|
2514
3384
|
_UPEO,
|
|
2515
3385
|
0,
|
|
2516
|
-
[_aTP,
|
|
3386
|
+
[_aTP, _mI],
|
|
2517
3387
|
[[() => Prompt, 0], 0],
|
|
2518
3388
|
];
|
|
2519
3389
|
var UserPreferenceMemoryStrategyInput = [
|
|
@@ -2540,7 +3410,7 @@ var UserPreferenceOverrideConsolidationConfigurationInput = [
|
|
|
2540
3410
|
n0,
|
|
2541
3411
|
_UPOCCI,
|
|
2542
3412
|
0,
|
|
2543
|
-
[_aTP,
|
|
3413
|
+
[_aTP, _mI],
|
|
2544
3414
|
[[() => Prompt, 0], 0],
|
|
2545
3415
|
];
|
|
2546
3416
|
var UserPreferenceOverrideExtractionConfigurationInput = [
|
|
@@ -2548,7 +3418,7 @@ var UserPreferenceOverrideExtractionConfigurationInput = [
|
|
|
2548
3418
|
n0,
|
|
2549
3419
|
_UPOECI,
|
|
2550
3420
|
0,
|
|
2551
|
-
[_aTP,
|
|
3421
|
+
[_aTP, _mI],
|
|
2552
3422
|
[[() => Prompt, 0], 0],
|
|
2553
3423
|
];
|
|
2554
3424
|
var ValidationException = [
|
|
@@ -2578,8 +3448,11 @@ var BedrockAgentCoreControlServiceException = [
|
|
|
2578
3448
|
schema.TypeRegistry.for(_sm).registerError(BedrockAgentCoreControlServiceException, BedrockAgentCoreControlServiceException$1);
|
|
2579
3449
|
var AgentRuntimeEndpoints = [1, n0, _AREg, 0, [() => AgentRuntimeEndpoint, 0]];
|
|
2580
3450
|
var AgentRuntimes = [1, n0, _ARg, 0, [() => AgentRuntime, 0]];
|
|
3451
|
+
var ApiGatewayToolFilters = [1, n0, _AGTFp, 0, () => ApiGatewayToolFilter];
|
|
3452
|
+
var ApiGatewayToolOverrides = [1, n0, _AGTOp, 0, () => ApiGatewayToolOverride];
|
|
2581
3453
|
var ApiKeyCredentialProviders = [1, n0, _AKCP, 0, () => ApiKeyCredentialProviderItem];
|
|
2582
3454
|
var BrowserSummaries = [1, n0, _BSr, 0, [() => BrowserSummary, 0]];
|
|
3455
|
+
var CategoricalScaleDefinitions = [1, n0, _CSDa, 0, () => CategoricalScaleDefinition];
|
|
2583
3456
|
var CodeInterpreterSummaries = [1, n0, _CISo, 0, [() => CodeInterpreterSummary, 0]];
|
|
2584
3457
|
var CredentialProviderConfigurations = [
|
|
2585
3458
|
1,
|
|
@@ -2588,7 +3461,12 @@ var CredentialProviderConfigurations = [
|
|
|
2588
3461
|
0,
|
|
2589
3462
|
[() => CredentialProviderConfiguration, 0],
|
|
2590
3463
|
];
|
|
3464
|
+
var CustomClaimValidationsType = [1, n0, _CCVTu, 0, () => CustomClaimValidationType];
|
|
2591
3465
|
var DeleteMemoryStrategiesList = [1, n0, _DMSL, 0, () => DeleteMemoryStrategyInput];
|
|
3466
|
+
var EvaluatorList = [1, n0, _EL, 0, () => EvaluatorReference];
|
|
3467
|
+
var EvaluatorSummaryList = [1, n0, _ESL, 0, [() => EvaluatorSummary, 0]];
|
|
3468
|
+
var FilterList = [1, n0, _FL, 0, () => Filter];
|
|
3469
|
+
var Findings = [1, n0, _Fin, 0, () => Finding];
|
|
2592
3470
|
var GatewayInterceptorConfigurations = [
|
|
2593
3471
|
1,
|
|
2594
3472
|
n0,
|
|
@@ -2602,7 +3480,19 @@ var MemoryStrategyInputList = [1, n0, _MSIL, 0, [() => MemoryStrategyInput, 0]];
|
|
|
2602
3480
|
var MemoryStrategyList = [1, n0, _MSL, 0, [() => MemoryStrategy, 0]];
|
|
2603
3481
|
var MemorySummaryList = [1, n0, _MSLe, 0, () => MemorySummary];
|
|
2604
3482
|
var ModifyMemoryStrategiesList = [1, n0, _MMSL, 0, [() => ModifyMemoryStrategyInput, 0]];
|
|
3483
|
+
var NumericalScaleDefinitions = [1, n0, _NSDu, 0, () => NumericalScaleDefinition];
|
|
2605
3484
|
var Oauth2CredentialProviders = [1, n0, _OCP, 0, () => Oauth2CredentialProviderItem];
|
|
3485
|
+
var OnlineEvaluationConfigSummaryList = [
|
|
3486
|
+
1,
|
|
3487
|
+
n0,
|
|
3488
|
+
_OECSL,
|
|
3489
|
+
0,
|
|
3490
|
+
[() => OnlineEvaluationConfigSummary, 0],
|
|
3491
|
+
];
|
|
3492
|
+
var Policies = [1, n0, _Pol, 0, [() => Policy, 0]];
|
|
3493
|
+
var PolicyEngines = [1, n0, _PEo, 0, [() => PolicyEngine, 0]];
|
|
3494
|
+
var PolicyGenerationAssets = [1, n0, _PGAo, 0, () => PolicyGenerationAsset];
|
|
3495
|
+
var PolicyGenerations = [1, n0, _PGo, 0, () => PolicyGeneration];
|
|
2606
3496
|
var TargetSummaries = [1, n0, _TSa, 0, [() => TargetSummary, 0]];
|
|
2607
3497
|
var ToolDefinitions = [1, n0, _TDoo, 0, () => ToolDefinition];
|
|
2608
3498
|
var TriggerConditionInputList = [1, n0, _TCIL, 0, () => TriggerConditionInput];
|
|
@@ -2617,7 +3507,7 @@ var AgentRuntimeArtifact = [
|
|
|
2617
3507
|
n0,
|
|
2618
3508
|
_ARA,
|
|
2619
3509
|
0,
|
|
2620
|
-
[
|
|
3510
|
+
[_cCo, _cCod],
|
|
2621
3511
|
[() => ContainerConfiguration, () => CodeConfiguration],
|
|
2622
3512
|
];
|
|
2623
3513
|
var ApiSchemaConfiguration = [
|
|
@@ -2636,6 +3526,7 @@ var AuthorizerConfiguration = [
|
|
|
2636
3526
|
[_cJWTA],
|
|
2637
3527
|
[() => CustomJWTAuthorizerConfiguration],
|
|
2638
3528
|
];
|
|
3529
|
+
var ClaimMatchValueType = [3, n0, _CMVT, 0, [_mVS, _mVSL], [0, 64 | 0]];
|
|
2639
3530
|
var Code = [3, n0, _C, 0, [_s_], [() => S3Location]];
|
|
2640
3531
|
var ConsolidationConfiguration = [
|
|
2641
3532
|
3,
|
|
@@ -2645,10 +3536,11 @@ var ConsolidationConfiguration = [
|
|
|
2645
3536
|
[_cCC],
|
|
2646
3537
|
[[() => CustomConsolidationConfiguration, 0]],
|
|
2647
3538
|
];
|
|
3539
|
+
var Content = [3, n0, _Co, 0, [_rTa], [0]];
|
|
2648
3540
|
var CredentialProvider = [
|
|
2649
3541
|
3,
|
|
2650
3542
|
n0,
|
|
2651
|
-
|
|
3543
|
+
_CPr,
|
|
2652
3544
|
0,
|
|
2653
3545
|
[_oCP, _aKCP],
|
|
2654
3546
|
[[() => OAuthCredentialProvider, 0], () => GatewayApiKeyCredentialProvider],
|
|
@@ -2658,11 +3550,12 @@ var CustomConfigurationInput = [
|
|
|
2658
3550
|
n0,
|
|
2659
3551
|
_CCI,
|
|
2660
3552
|
0,
|
|
2661
|
-
[_sO, _sOu, _uPO, _sMC],
|
|
3553
|
+
[_sO, _sOu, _uPO, _eO, _sMC],
|
|
2662
3554
|
[
|
|
2663
3555
|
[() => SemanticOverrideConfigurationInput, 0],
|
|
2664
3556
|
[() => SummaryOverrideConfigurationInput, 0],
|
|
2665
3557
|
[() => UserPreferenceOverrideConfigurationInput, 0],
|
|
3558
|
+
[() => EpisodicOverrideConfigurationInput, 0],
|
|
2666
3559
|
() => SelfManagedConfigurationInput,
|
|
2667
3560
|
],
|
|
2668
3561
|
];
|
|
@@ -2671,11 +3564,12 @@ var CustomConsolidationConfiguration = [
|
|
|
2671
3564
|
n0,
|
|
2672
3565
|
_CCC,
|
|
2673
3566
|
0,
|
|
2674
|
-
[_sCO, _sCOu, _uPCO],
|
|
3567
|
+
[_sCO, _sCOu, _uPCO, _eCO],
|
|
2675
3568
|
[
|
|
2676
3569
|
[() => SemanticConsolidationOverride, 0],
|
|
2677
3570
|
[() => SummaryConsolidationOverride, 0],
|
|
2678
3571
|
[() => UserPreferenceConsolidationOverride, 0],
|
|
3572
|
+
[() => EpisodicConsolidationOverride, 0],
|
|
2679
3573
|
],
|
|
2680
3574
|
];
|
|
2681
3575
|
var CustomConsolidationConfigurationInput = [
|
|
@@ -2683,11 +3577,12 @@ var CustomConsolidationConfigurationInput = [
|
|
|
2683
3577
|
n0,
|
|
2684
3578
|
_CCCI,
|
|
2685
3579
|
0,
|
|
2686
|
-
[_sCO, _sCOu, _uPCO],
|
|
3580
|
+
[_sCO, _sCOu, _uPCO, _eCO],
|
|
2687
3581
|
[
|
|
2688
3582
|
[() => SemanticOverrideConsolidationConfigurationInput, 0],
|
|
2689
3583
|
[() => SummaryOverrideConsolidationConfigurationInput, 0],
|
|
2690
3584
|
[() => UserPreferenceOverrideConsolidationConfigurationInput, 0],
|
|
3585
|
+
[() => EpisodicOverrideConsolidationConfigurationInput, 0],
|
|
2691
3586
|
],
|
|
2692
3587
|
];
|
|
2693
3588
|
var CustomExtractionConfiguration = [
|
|
@@ -2695,10 +3590,11 @@ var CustomExtractionConfiguration = [
|
|
|
2695
3590
|
n0,
|
|
2696
3591
|
_CEC,
|
|
2697
3592
|
0,
|
|
2698
|
-
[_sEO, _uPEO],
|
|
3593
|
+
[_sEO, _uPEO, _eEO],
|
|
2699
3594
|
[
|
|
2700
3595
|
[() => SemanticExtractionOverride, 0],
|
|
2701
3596
|
[() => UserPreferenceExtractionOverride, 0],
|
|
3597
|
+
[() => EpisodicExtractionOverride, 0],
|
|
2702
3598
|
],
|
|
2703
3599
|
];
|
|
2704
3600
|
var CustomExtractionConfigurationInput = [
|
|
@@ -2706,20 +3602,42 @@ var CustomExtractionConfigurationInput = [
|
|
|
2706
3602
|
n0,
|
|
2707
3603
|
_CECI,
|
|
2708
3604
|
0,
|
|
2709
|
-
[_sEO, _uPEO],
|
|
3605
|
+
[_sEO, _uPEO, _eEO],
|
|
2710
3606
|
[
|
|
2711
3607
|
[() => SemanticOverrideExtractionConfigurationInput, 0],
|
|
2712
3608
|
[() => UserPreferenceOverrideExtractionConfigurationInput, 0],
|
|
3609
|
+
[() => EpisodicOverrideExtractionConfigurationInput, 0],
|
|
2713
3610
|
],
|
|
2714
3611
|
];
|
|
3612
|
+
var CustomReflectionConfiguration = [
|
|
3613
|
+
3,
|
|
3614
|
+
n0,
|
|
3615
|
+
_CRC,
|
|
3616
|
+
0,
|
|
3617
|
+
[_eRO],
|
|
3618
|
+
[[() => EpisodicReflectionOverride, 0]],
|
|
3619
|
+
];
|
|
3620
|
+
var CustomReflectionConfigurationInput = [
|
|
3621
|
+
3,
|
|
3622
|
+
n0,
|
|
3623
|
+
_CRCI,
|
|
3624
|
+
0,
|
|
3625
|
+
[_eRO],
|
|
3626
|
+
[[() => EpisodicOverrideReflectionConfigurationInput, 0]],
|
|
3627
|
+
];
|
|
3628
|
+
var DataSourceConfig = [3, n0, _DSC, 0, [_cWL], [() => CloudWatchLogsInputConfig]];
|
|
3629
|
+
var EvaluatorConfig = [3, n0, _EC, 0, [_lAAJ], [[() => LlmAsAJudgeEvaluatorConfig, 0]]];
|
|
3630
|
+
var EvaluatorModelConfig = [3, n0, _EMC, 0, [_bEMC], [() => BedrockEvaluatorModelConfig]];
|
|
3631
|
+
var EvaluatorReference = [3, n0, _ER, 0, [_eI], [0]];
|
|
2715
3632
|
var ExtractionConfiguration = [
|
|
2716
3633
|
3,
|
|
2717
3634
|
n0,
|
|
2718
|
-
|
|
3635
|
+
_ECx,
|
|
2719
3636
|
0,
|
|
2720
3637
|
[_cEC],
|
|
2721
3638
|
[[() => CustomExtractionConfiguration, 0]],
|
|
2722
3639
|
];
|
|
3640
|
+
var FilterValue = [3, n0, _FV, 0, [_sVt, _dV, _bV], [0, 1, 2]];
|
|
2723
3641
|
var GatewayProtocolConfiguration = [
|
|
2724
3642
|
3,
|
|
2725
3643
|
n0,
|
|
@@ -2731,9 +3649,9 @@ var GatewayProtocolConfiguration = [
|
|
|
2731
3649
|
var InterceptorConfiguration = [
|
|
2732
3650
|
3,
|
|
2733
3651
|
n0,
|
|
2734
|
-
|
|
3652
|
+
_ICnt,
|
|
2735
3653
|
0,
|
|
2736
|
-
[
|
|
3654
|
+
[_la],
|
|
2737
3655
|
[() => LambdaInterceptorConfiguration],
|
|
2738
3656
|
];
|
|
2739
3657
|
var McpTargetConfiguration = [
|
|
@@ -2741,12 +3659,13 @@ var McpTargetConfiguration = [
|
|
|
2741
3659
|
n0,
|
|
2742
3660
|
_MTC,
|
|
2743
3661
|
0,
|
|
2744
|
-
[_oAS, _sM,
|
|
3662
|
+
[_oAS, _sM, _la, _mSc, _aG],
|
|
2745
3663
|
[
|
|
2746
3664
|
[() => ApiSchemaConfiguration, 0],
|
|
2747
3665
|
[() => ApiSchemaConfiguration, 0],
|
|
2748
3666
|
() => McpLambdaTargetConfiguration,
|
|
2749
3667
|
() => McpServerTargetConfiguration,
|
|
3668
|
+
() => ApiGatewayTargetConfiguration,
|
|
2750
3669
|
],
|
|
2751
3670
|
];
|
|
2752
3671
|
var MemoryStrategyInput = [
|
|
@@ -2754,12 +3673,13 @@ var MemoryStrategyInput = [
|
|
|
2754
3673
|
n0,
|
|
2755
3674
|
_MSI,
|
|
2756
3675
|
0,
|
|
2757
|
-
[_sMS, _sMSu, _uPMS, _cMS],
|
|
3676
|
+
[_sMS, _sMSu, _uPMS, _cMS, _eMS],
|
|
2758
3677
|
[
|
|
2759
3678
|
[() => SemanticMemoryStrategyInput, 0],
|
|
2760
3679
|
[() => SummaryMemoryStrategyInput, 0],
|
|
2761
3680
|
[() => UserPreferenceMemoryStrategyInput, 0],
|
|
2762
3681
|
[() => CustomMemoryStrategyInput, 0],
|
|
3682
|
+
[() => EpisodicMemoryStrategyInput, 0],
|
|
2763
3683
|
],
|
|
2764
3684
|
];
|
|
2765
3685
|
var ModifyConsolidationConfiguration = [
|
|
@@ -2778,6 +3698,14 @@ var ModifyExtractionConfiguration = [
|
|
|
2778
3698
|
[_cEC],
|
|
2779
3699
|
[[() => CustomExtractionConfigurationInput, 0]],
|
|
2780
3700
|
];
|
|
3701
|
+
var ModifyReflectionConfiguration = [
|
|
3702
|
+
3,
|
|
3703
|
+
n0,
|
|
3704
|
+
_MRC,
|
|
3705
|
+
0,
|
|
3706
|
+
[_eRC, _cRC],
|
|
3707
|
+
[() => EpisodicReflectionConfigurationInput, [() => CustomReflectionConfigurationInput, 0]],
|
|
3708
|
+
];
|
|
2781
3709
|
var Oauth2Discovery = [
|
|
2782
3710
|
3,
|
|
2783
3711
|
n0,
|
|
@@ -2822,7 +3750,25 @@ var Oauth2ProviderConfigOutput = [
|
|
|
2822
3750
|
() => IncludedOauth2ProviderConfigOutput,
|
|
2823
3751
|
],
|
|
2824
3752
|
];
|
|
3753
|
+
var PolicyDefinition = [3, n0, _PD, 0, [_ce], [() => CedarPolicy]];
|
|
3754
|
+
var RatingScale = [
|
|
3755
|
+
3,
|
|
3756
|
+
n0,
|
|
3757
|
+
_RS,
|
|
3758
|
+
0,
|
|
3759
|
+
[_nu, _ca],
|
|
3760
|
+
[() => NumericalScaleDefinitions, () => CategoricalScaleDefinitions],
|
|
3761
|
+
];
|
|
3762
|
+
var ReflectionConfiguration = [
|
|
3763
|
+
3,
|
|
3764
|
+
n0,
|
|
3765
|
+
_RCe,
|
|
3766
|
+
0,
|
|
3767
|
+
[_cRC, _eRC],
|
|
3768
|
+
[[() => CustomReflectionConfiguration, 0], () => EpisodicReflectionConfiguration],
|
|
3769
|
+
];
|
|
2825
3770
|
var RequestHeaderConfiguration = [3, n0, _RHC, 0, [_rHA], [64 | 0]];
|
|
3771
|
+
var Resource = [3, n0, _Re, 0, [_a], [0]];
|
|
2826
3772
|
var TargetConfiguration = [3, n0, _TC, 0, [_mc], [[() => McpTargetConfiguration, 0]]];
|
|
2827
3773
|
var ToolSchema = [
|
|
2828
3774
|
3,
|
|
@@ -2898,6 +3844,16 @@ var CreateCodeInterpreter = [
|
|
|
2898
3844
|
() => CreateCodeInterpreterRequest,
|
|
2899
3845
|
() => CreateCodeInterpreterResponse,
|
|
2900
3846
|
];
|
|
3847
|
+
var CreateEvaluator = [
|
|
3848
|
+
9,
|
|
3849
|
+
n0,
|
|
3850
|
+
_CEr,
|
|
3851
|
+
{
|
|
3852
|
+
[_h]: ["POST", "/evaluators/create", 202],
|
|
3853
|
+
},
|
|
3854
|
+
() => CreateEvaluatorRequest,
|
|
3855
|
+
() => CreateEvaluatorResponse,
|
|
3856
|
+
];
|
|
2901
3857
|
var CreateGateway = [
|
|
2902
3858
|
9,
|
|
2903
3859
|
n0,
|
|
@@ -2938,6 +3894,36 @@ var CreateOauth2CredentialProvider = [
|
|
|
2938
3894
|
() => CreateOauth2CredentialProviderRequest,
|
|
2939
3895
|
() => CreateOauth2CredentialProviderResponse,
|
|
2940
3896
|
];
|
|
3897
|
+
var CreateOnlineEvaluationConfig = [
|
|
3898
|
+
9,
|
|
3899
|
+
n0,
|
|
3900
|
+
_COEC,
|
|
3901
|
+
{
|
|
3902
|
+
[_h]: ["POST", "/online-evaluation-configs/create", 202],
|
|
3903
|
+
},
|
|
3904
|
+
() => CreateOnlineEvaluationConfigRequest,
|
|
3905
|
+
() => CreateOnlineEvaluationConfigResponse,
|
|
3906
|
+
];
|
|
3907
|
+
var CreatePolicy = [
|
|
3908
|
+
9,
|
|
3909
|
+
n0,
|
|
3910
|
+
_CPre,
|
|
3911
|
+
{
|
|
3912
|
+
[_h]: ["POST", "/policy-engines/{policyEngineId}/policies", 202],
|
|
3913
|
+
},
|
|
3914
|
+
() => CreatePolicyRequest,
|
|
3915
|
+
() => CreatePolicyResponse,
|
|
3916
|
+
];
|
|
3917
|
+
var CreatePolicyEngine = [
|
|
3918
|
+
9,
|
|
3919
|
+
n0,
|
|
3920
|
+
_CPE,
|
|
3921
|
+
{
|
|
3922
|
+
[_h]: ["POST", "/policy-engines", 202],
|
|
3923
|
+
},
|
|
3924
|
+
() => CreatePolicyEngineRequest,
|
|
3925
|
+
() => CreatePolicyEngineResponse,
|
|
3926
|
+
];
|
|
2941
3927
|
var CreateWorkloadIdentity = [
|
|
2942
3928
|
9,
|
|
2943
3929
|
n0,
|
|
@@ -2998,6 +3984,16 @@ var DeleteCodeInterpreter = [
|
|
|
2998
3984
|
() => DeleteCodeInterpreterRequest,
|
|
2999
3985
|
() => DeleteCodeInterpreterResponse,
|
|
3000
3986
|
];
|
|
3987
|
+
var DeleteEvaluator = [
|
|
3988
|
+
9,
|
|
3989
|
+
n0,
|
|
3990
|
+
_DE,
|
|
3991
|
+
{
|
|
3992
|
+
[_h]: ["DELETE", "/evaluators/{evaluatorId}", 202],
|
|
3993
|
+
},
|
|
3994
|
+
() => DeleteEvaluatorRequest,
|
|
3995
|
+
() => DeleteEvaluatorResponse,
|
|
3996
|
+
];
|
|
3001
3997
|
var DeleteGateway = [
|
|
3002
3998
|
9,
|
|
3003
3999
|
n0,
|
|
@@ -3038,40 +4034,80 @@ var DeleteOauth2CredentialProvider = [
|
|
|
3038
4034
|
() => DeleteOauth2CredentialProviderRequest,
|
|
3039
4035
|
() => DeleteOauth2CredentialProviderResponse,
|
|
3040
4036
|
];
|
|
3041
|
-
var
|
|
4037
|
+
var DeleteOnlineEvaluationConfig = [
|
|
3042
4038
|
9,
|
|
3043
4039
|
n0,
|
|
3044
|
-
|
|
4040
|
+
_DOEC,
|
|
3045
4041
|
{
|
|
3046
|
-
[_h]: ["
|
|
4042
|
+
[_h]: ["DELETE", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202],
|
|
3047
4043
|
},
|
|
3048
|
-
() =>
|
|
3049
|
-
() =>
|
|
4044
|
+
() => DeleteOnlineEvaluationConfigRequest,
|
|
4045
|
+
() => DeleteOnlineEvaluationConfigResponse,
|
|
3050
4046
|
];
|
|
3051
|
-
var
|
|
4047
|
+
var DeletePolicy = [
|
|
3052
4048
|
9,
|
|
3053
4049
|
n0,
|
|
3054
|
-
|
|
4050
|
+
_DP,
|
|
3055
4051
|
{
|
|
3056
|
-
[_h]: ["
|
|
4052
|
+
[_h]: ["DELETE", "/policy-engines/{policyEngineId}/policies/{policyId}", 202],
|
|
3057
4053
|
},
|
|
3058
|
-
() =>
|
|
3059
|
-
() =>
|
|
4054
|
+
() => DeletePolicyRequest,
|
|
4055
|
+
() => DeletePolicyResponse,
|
|
3060
4056
|
];
|
|
3061
|
-
var
|
|
4057
|
+
var DeletePolicyEngine = [
|
|
3062
4058
|
9,
|
|
3063
4059
|
n0,
|
|
3064
|
-
|
|
4060
|
+
_DPE,
|
|
3065
4061
|
{
|
|
3066
|
-
[_h]: ["
|
|
4062
|
+
[_h]: ["DELETE", "/policy-engines/{policyEngineId}", 202],
|
|
3067
4063
|
},
|
|
3068
|
-
() =>
|
|
3069
|
-
() =>
|
|
4064
|
+
() => DeletePolicyEngineRequest,
|
|
4065
|
+
() => DeletePolicyEngineResponse,
|
|
3070
4066
|
];
|
|
3071
|
-
var
|
|
4067
|
+
var DeleteResourcePolicy = [
|
|
3072
4068
|
9,
|
|
3073
4069
|
n0,
|
|
3074
|
-
|
|
4070
|
+
_DRP,
|
|
4071
|
+
{
|
|
4072
|
+
[_h]: ["DELETE", "/resourcepolicy/{resourceArn}", 204],
|
|
4073
|
+
},
|
|
4074
|
+
() => DeleteResourcePolicyRequest,
|
|
4075
|
+
() => DeleteResourcePolicyResponse,
|
|
4076
|
+
];
|
|
4077
|
+
var DeleteWorkloadIdentity = [
|
|
4078
|
+
9,
|
|
4079
|
+
n0,
|
|
4080
|
+
_DWI,
|
|
4081
|
+
{
|
|
4082
|
+
[_h]: ["POST", "/identities/DeleteWorkloadIdentity", 204],
|
|
4083
|
+
},
|
|
4084
|
+
() => DeleteWorkloadIdentityRequest,
|
|
4085
|
+
() => DeleteWorkloadIdentityResponse,
|
|
4086
|
+
];
|
|
4087
|
+
var GetAgentRuntime = [
|
|
4088
|
+
9,
|
|
4089
|
+
n0,
|
|
4090
|
+
_GAR,
|
|
4091
|
+
{
|
|
4092
|
+
[_h]: ["GET", "/runtimes/{agentRuntimeId}/", 200],
|
|
4093
|
+
},
|
|
4094
|
+
() => GetAgentRuntimeRequest,
|
|
4095
|
+
() => GetAgentRuntimeResponse,
|
|
4096
|
+
];
|
|
4097
|
+
var GetAgentRuntimeEndpoint = [
|
|
4098
|
+
9,
|
|
4099
|
+
n0,
|
|
4100
|
+
_GARE,
|
|
4101
|
+
{
|
|
4102
|
+
[_h]: ["GET", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 200],
|
|
4103
|
+
},
|
|
4104
|
+
() => GetAgentRuntimeEndpointRequest,
|
|
4105
|
+
() => GetAgentRuntimeEndpointResponse,
|
|
4106
|
+
];
|
|
4107
|
+
var GetApiKeyCredentialProvider = [
|
|
4108
|
+
9,
|
|
4109
|
+
n0,
|
|
4110
|
+
_GAKCPe,
|
|
3075
4111
|
{
|
|
3076
4112
|
[_h]: ["POST", "/identities/GetApiKeyCredentialProvider", 200],
|
|
3077
4113
|
},
|
|
@@ -3098,6 +4134,16 @@ var GetCodeInterpreter = [
|
|
|
3098
4134
|
() => GetCodeInterpreterRequest,
|
|
3099
4135
|
() => GetCodeInterpreterResponse,
|
|
3100
4136
|
];
|
|
4137
|
+
var GetEvaluator = [
|
|
4138
|
+
9,
|
|
4139
|
+
n0,
|
|
4140
|
+
_GE,
|
|
4141
|
+
{
|
|
4142
|
+
[_h]: ["GET", "/evaluators/{evaluatorId}", 200],
|
|
4143
|
+
},
|
|
4144
|
+
() => GetEvaluatorRequest,
|
|
4145
|
+
() => GetEvaluatorResponse,
|
|
4146
|
+
];
|
|
3101
4147
|
var GetGateway = [
|
|
3102
4148
|
9,
|
|
3103
4149
|
n0,
|
|
@@ -3138,6 +4184,56 @@ var GetOauth2CredentialProvider = [
|
|
|
3138
4184
|
() => GetOauth2CredentialProviderRequest,
|
|
3139
4185
|
() => GetOauth2CredentialProviderResponse,
|
|
3140
4186
|
];
|
|
4187
|
+
var GetOnlineEvaluationConfig = [
|
|
4188
|
+
9,
|
|
4189
|
+
n0,
|
|
4190
|
+
_GOEC,
|
|
4191
|
+
{
|
|
4192
|
+
[_h]: ["GET", "/online-evaluation-configs/{onlineEvaluationConfigId}", 200],
|
|
4193
|
+
},
|
|
4194
|
+
() => GetOnlineEvaluationConfigRequest,
|
|
4195
|
+
() => GetOnlineEvaluationConfigResponse,
|
|
4196
|
+
];
|
|
4197
|
+
var GetPolicy = [
|
|
4198
|
+
9,
|
|
4199
|
+
n0,
|
|
4200
|
+
_GP,
|
|
4201
|
+
{
|
|
4202
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policies/{policyId}", 200],
|
|
4203
|
+
},
|
|
4204
|
+
() => GetPolicyRequest,
|
|
4205
|
+
() => GetPolicyResponse,
|
|
4206
|
+
];
|
|
4207
|
+
var GetPolicyEngine = [
|
|
4208
|
+
9,
|
|
4209
|
+
n0,
|
|
4210
|
+
_GPE,
|
|
4211
|
+
{
|
|
4212
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}", 200],
|
|
4213
|
+
},
|
|
4214
|
+
() => GetPolicyEngineRequest,
|
|
4215
|
+
() => GetPolicyEngineResponse,
|
|
4216
|
+
];
|
|
4217
|
+
var GetPolicyGeneration = [
|
|
4218
|
+
9,
|
|
4219
|
+
n0,
|
|
4220
|
+
_GPG,
|
|
4221
|
+
{
|
|
4222
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}", 200],
|
|
4223
|
+
},
|
|
4224
|
+
() => GetPolicyGenerationRequest,
|
|
4225
|
+
() => GetPolicyGenerationResponse,
|
|
4226
|
+
];
|
|
4227
|
+
var GetResourcePolicy = [
|
|
4228
|
+
9,
|
|
4229
|
+
n0,
|
|
4230
|
+
_GRP,
|
|
4231
|
+
{
|
|
4232
|
+
[_h]: ["GET", "/resourcepolicy/{resourceArn}", 200],
|
|
4233
|
+
},
|
|
4234
|
+
() => GetResourcePolicyRequest,
|
|
4235
|
+
() => GetResourcePolicyResponse,
|
|
4236
|
+
];
|
|
3141
4237
|
var GetTokenVault = [
|
|
3142
4238
|
9,
|
|
3143
4239
|
n0,
|
|
@@ -3218,6 +4314,16 @@ var ListCodeInterpreters = [
|
|
|
3218
4314
|
() => ListCodeInterpretersRequest,
|
|
3219
4315
|
() => ListCodeInterpretersResponse,
|
|
3220
4316
|
];
|
|
4317
|
+
var ListEvaluators = [
|
|
4318
|
+
9,
|
|
4319
|
+
n0,
|
|
4320
|
+
_LE,
|
|
4321
|
+
{
|
|
4322
|
+
[_h]: ["POST", "/evaluators", 200],
|
|
4323
|
+
},
|
|
4324
|
+
() => ListEvaluatorsRequest,
|
|
4325
|
+
() => ListEvaluatorsResponse,
|
|
4326
|
+
];
|
|
3221
4327
|
var ListGateways = [
|
|
3222
4328
|
9,
|
|
3223
4329
|
n0,
|
|
@@ -3258,6 +4364,56 @@ var ListOauth2CredentialProviders = [
|
|
|
3258
4364
|
() => ListOauth2CredentialProvidersRequest,
|
|
3259
4365
|
() => ListOauth2CredentialProvidersResponse,
|
|
3260
4366
|
];
|
|
4367
|
+
var ListOnlineEvaluationConfigs = [
|
|
4368
|
+
9,
|
|
4369
|
+
n0,
|
|
4370
|
+
_LOEC,
|
|
4371
|
+
{
|
|
4372
|
+
[_h]: ["POST", "/online-evaluation-configs", 200],
|
|
4373
|
+
},
|
|
4374
|
+
() => ListOnlineEvaluationConfigsRequest,
|
|
4375
|
+
() => ListOnlineEvaluationConfigsResponse,
|
|
4376
|
+
];
|
|
4377
|
+
var ListPolicies = [
|
|
4378
|
+
9,
|
|
4379
|
+
n0,
|
|
4380
|
+
_LP,
|
|
4381
|
+
{
|
|
4382
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policies", 200],
|
|
4383
|
+
},
|
|
4384
|
+
() => ListPoliciesRequest,
|
|
4385
|
+
() => ListPoliciesResponse,
|
|
4386
|
+
];
|
|
4387
|
+
var ListPolicyEngines = [
|
|
4388
|
+
9,
|
|
4389
|
+
n0,
|
|
4390
|
+
_LPE,
|
|
4391
|
+
{
|
|
4392
|
+
[_h]: ["GET", "/policy-engines", 200],
|
|
4393
|
+
},
|
|
4394
|
+
() => ListPolicyEnginesRequest,
|
|
4395
|
+
() => ListPolicyEnginesResponse,
|
|
4396
|
+
];
|
|
4397
|
+
var ListPolicyGenerationAssets = [
|
|
4398
|
+
9,
|
|
4399
|
+
n0,
|
|
4400
|
+
_LPGA,
|
|
4401
|
+
{
|
|
4402
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}/assets", 200],
|
|
4403
|
+
},
|
|
4404
|
+
() => ListPolicyGenerationAssetsRequest,
|
|
4405
|
+
() => ListPolicyGenerationAssetsResponse,
|
|
4406
|
+
];
|
|
4407
|
+
var ListPolicyGenerations = [
|
|
4408
|
+
9,
|
|
4409
|
+
n0,
|
|
4410
|
+
_LPG,
|
|
4411
|
+
{
|
|
4412
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations", 200],
|
|
4413
|
+
},
|
|
4414
|
+
() => ListPolicyGenerationsRequest,
|
|
4415
|
+
() => ListPolicyGenerationsResponse,
|
|
4416
|
+
];
|
|
3261
4417
|
var ListTagsForResource = [
|
|
3262
4418
|
9,
|
|
3263
4419
|
n0,
|
|
@@ -3278,6 +4434,16 @@ var ListWorkloadIdentities = [
|
|
|
3278
4434
|
() => ListWorkloadIdentitiesRequest,
|
|
3279
4435
|
() => ListWorkloadIdentitiesResponse,
|
|
3280
4436
|
];
|
|
4437
|
+
var PutResourcePolicy = [
|
|
4438
|
+
9,
|
|
4439
|
+
n0,
|
|
4440
|
+
_PRP,
|
|
4441
|
+
{
|
|
4442
|
+
[_h]: ["PUT", "/resourcepolicy/{resourceArn}", 201],
|
|
4443
|
+
},
|
|
4444
|
+
() => PutResourcePolicyRequest,
|
|
4445
|
+
() => PutResourcePolicyResponse,
|
|
4446
|
+
];
|
|
3281
4447
|
var SetTokenVaultCMK = [
|
|
3282
4448
|
9,
|
|
3283
4449
|
n0,
|
|
@@ -3288,6 +4454,16 @@ var SetTokenVaultCMK = [
|
|
|
3288
4454
|
() => SetTokenVaultCMKRequest,
|
|
3289
4455
|
() => SetTokenVaultCMKResponse,
|
|
3290
4456
|
];
|
|
4457
|
+
var StartPolicyGeneration = [
|
|
4458
|
+
9,
|
|
4459
|
+
n0,
|
|
4460
|
+
_SPG,
|
|
4461
|
+
{
|
|
4462
|
+
[_h]: ["POST", "/policy-engines/{policyEngineId}/policy-generations", 202],
|
|
4463
|
+
},
|
|
4464
|
+
() => StartPolicyGenerationRequest,
|
|
4465
|
+
() => StartPolicyGenerationResponse,
|
|
4466
|
+
];
|
|
3291
4467
|
var SynchronizeGatewayTargets = [
|
|
3292
4468
|
9,
|
|
3293
4469
|
n0,
|
|
@@ -3348,6 +4524,16 @@ var UpdateApiKeyCredentialProvider = [
|
|
|
3348
4524
|
() => UpdateApiKeyCredentialProviderRequest,
|
|
3349
4525
|
() => UpdateApiKeyCredentialProviderResponse,
|
|
3350
4526
|
];
|
|
4527
|
+
var UpdateEvaluator = [
|
|
4528
|
+
9,
|
|
4529
|
+
n0,
|
|
4530
|
+
_UEp,
|
|
4531
|
+
{
|
|
4532
|
+
[_h]: ["PUT", "/evaluators/{evaluatorId}", 202],
|
|
4533
|
+
},
|
|
4534
|
+
() => UpdateEvaluatorRequest,
|
|
4535
|
+
() => UpdateEvaluatorResponse,
|
|
4536
|
+
];
|
|
3351
4537
|
var UpdateGateway = [
|
|
3352
4538
|
9,
|
|
3353
4539
|
n0,
|
|
@@ -3388,6 +4574,36 @@ var UpdateOauth2CredentialProvider = [
|
|
|
3388
4574
|
() => UpdateOauth2CredentialProviderRequest,
|
|
3389
4575
|
() => UpdateOauth2CredentialProviderResponse,
|
|
3390
4576
|
];
|
|
4577
|
+
var UpdateOnlineEvaluationConfig = [
|
|
4578
|
+
9,
|
|
4579
|
+
n0,
|
|
4580
|
+
_UOEC,
|
|
4581
|
+
{
|
|
4582
|
+
[_h]: ["PUT", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202],
|
|
4583
|
+
},
|
|
4584
|
+
() => UpdateOnlineEvaluationConfigRequest,
|
|
4585
|
+
() => UpdateOnlineEvaluationConfigResponse,
|
|
4586
|
+
];
|
|
4587
|
+
var UpdatePolicy = [
|
|
4588
|
+
9,
|
|
4589
|
+
n0,
|
|
4590
|
+
_UP,
|
|
4591
|
+
{
|
|
4592
|
+
[_h]: ["PUT", "/policy-engines/{policyEngineId}/policies/{policyId}", 202],
|
|
4593
|
+
},
|
|
4594
|
+
() => UpdatePolicyRequest,
|
|
4595
|
+
() => UpdatePolicyResponse,
|
|
4596
|
+
];
|
|
4597
|
+
var UpdatePolicyEngine = [
|
|
4598
|
+
9,
|
|
4599
|
+
n0,
|
|
4600
|
+
_UPE,
|
|
4601
|
+
{
|
|
4602
|
+
[_h]: ["PUT", "/policy-engines/{policyEngineId}", 202],
|
|
4603
|
+
},
|
|
4604
|
+
() => UpdatePolicyEngineRequest,
|
|
4605
|
+
() => UpdatePolicyEngineResponse,
|
|
4606
|
+
];
|
|
3391
4607
|
var UpdateWorkloadIdentity = [
|
|
3392
4608
|
9,
|
|
3393
4609
|
n0,
|
|
@@ -3459,6 +4675,18 @@ class CreateCodeInterpreterCommand extends smithyClient.Command
|
|
|
3459
4675
|
.build() {
|
|
3460
4676
|
}
|
|
3461
4677
|
|
|
4678
|
+
class CreateEvaluatorCommand extends smithyClient.Command
|
|
4679
|
+
.classBuilder()
|
|
4680
|
+
.ep(commonParams)
|
|
4681
|
+
.m(function (Command, cs, config, o) {
|
|
4682
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4683
|
+
})
|
|
4684
|
+
.s("AmazonBedrockAgentCoreControl", "CreateEvaluator", {})
|
|
4685
|
+
.n("BedrockAgentCoreControlClient", "CreateEvaluatorCommand")
|
|
4686
|
+
.sc(CreateEvaluator)
|
|
4687
|
+
.build() {
|
|
4688
|
+
}
|
|
4689
|
+
|
|
3462
4690
|
class CreateGatewayCommand extends smithyClient.Command
|
|
3463
4691
|
.classBuilder()
|
|
3464
4692
|
.ep(commonParams)
|
|
@@ -3507,6 +4735,42 @@ class CreateOauth2CredentialProviderCommand extends smithyClient.Command
|
|
|
3507
4735
|
.build() {
|
|
3508
4736
|
}
|
|
3509
4737
|
|
|
4738
|
+
class CreateOnlineEvaluationConfigCommand extends smithyClient.Command
|
|
4739
|
+
.classBuilder()
|
|
4740
|
+
.ep(commonParams)
|
|
4741
|
+
.m(function (Command, cs, config, o) {
|
|
4742
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4743
|
+
})
|
|
4744
|
+
.s("AmazonBedrockAgentCoreControl", "CreateOnlineEvaluationConfig", {})
|
|
4745
|
+
.n("BedrockAgentCoreControlClient", "CreateOnlineEvaluationConfigCommand")
|
|
4746
|
+
.sc(CreateOnlineEvaluationConfig)
|
|
4747
|
+
.build() {
|
|
4748
|
+
}
|
|
4749
|
+
|
|
4750
|
+
class CreatePolicyCommand extends smithyClient.Command
|
|
4751
|
+
.classBuilder()
|
|
4752
|
+
.ep(commonParams)
|
|
4753
|
+
.m(function (Command, cs, config, o) {
|
|
4754
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4755
|
+
})
|
|
4756
|
+
.s("AmazonBedrockAgentCoreControl", "CreatePolicy", {})
|
|
4757
|
+
.n("BedrockAgentCoreControlClient", "CreatePolicyCommand")
|
|
4758
|
+
.sc(CreatePolicy)
|
|
4759
|
+
.build() {
|
|
4760
|
+
}
|
|
4761
|
+
|
|
4762
|
+
class CreatePolicyEngineCommand extends smithyClient.Command
|
|
4763
|
+
.classBuilder()
|
|
4764
|
+
.ep(commonParams)
|
|
4765
|
+
.m(function (Command, cs, config, o) {
|
|
4766
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4767
|
+
})
|
|
4768
|
+
.s("AmazonBedrockAgentCoreControl", "CreatePolicyEngine", {})
|
|
4769
|
+
.n("BedrockAgentCoreControlClient", "CreatePolicyEngineCommand")
|
|
4770
|
+
.sc(CreatePolicyEngine)
|
|
4771
|
+
.build() {
|
|
4772
|
+
}
|
|
4773
|
+
|
|
3510
4774
|
class CreateWorkloadIdentityCommand extends smithyClient.Command
|
|
3511
4775
|
.classBuilder()
|
|
3512
4776
|
.ep(commonParams)
|
|
@@ -3579,6 +4843,18 @@ class DeleteCodeInterpreterCommand extends smithyClient.Command
|
|
|
3579
4843
|
.build() {
|
|
3580
4844
|
}
|
|
3581
4845
|
|
|
4846
|
+
class DeleteEvaluatorCommand extends smithyClient.Command
|
|
4847
|
+
.classBuilder()
|
|
4848
|
+
.ep(commonParams)
|
|
4849
|
+
.m(function (Command, cs, config, o) {
|
|
4850
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4851
|
+
})
|
|
4852
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteEvaluator", {})
|
|
4853
|
+
.n("BedrockAgentCoreControlClient", "DeleteEvaluatorCommand")
|
|
4854
|
+
.sc(DeleteEvaluator)
|
|
4855
|
+
.build() {
|
|
4856
|
+
}
|
|
4857
|
+
|
|
3582
4858
|
class DeleteGatewayCommand extends smithyClient.Command
|
|
3583
4859
|
.classBuilder()
|
|
3584
4860
|
.ep(commonParams)
|
|
@@ -3627,6 +4903,54 @@ class DeleteOauth2CredentialProviderCommand extends smithyClient.Command
|
|
|
3627
4903
|
.build() {
|
|
3628
4904
|
}
|
|
3629
4905
|
|
|
4906
|
+
class DeleteOnlineEvaluationConfigCommand extends smithyClient.Command
|
|
4907
|
+
.classBuilder()
|
|
4908
|
+
.ep(commonParams)
|
|
4909
|
+
.m(function (Command, cs, config, o) {
|
|
4910
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4911
|
+
})
|
|
4912
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteOnlineEvaluationConfig", {})
|
|
4913
|
+
.n("BedrockAgentCoreControlClient", "DeleteOnlineEvaluationConfigCommand")
|
|
4914
|
+
.sc(DeleteOnlineEvaluationConfig)
|
|
4915
|
+
.build() {
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
class DeletePolicyCommand extends smithyClient.Command
|
|
4919
|
+
.classBuilder()
|
|
4920
|
+
.ep(commonParams)
|
|
4921
|
+
.m(function (Command, cs, config, o) {
|
|
4922
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4923
|
+
})
|
|
4924
|
+
.s("AmazonBedrockAgentCoreControl", "DeletePolicy", {})
|
|
4925
|
+
.n("BedrockAgentCoreControlClient", "DeletePolicyCommand")
|
|
4926
|
+
.sc(DeletePolicy)
|
|
4927
|
+
.build() {
|
|
4928
|
+
}
|
|
4929
|
+
|
|
4930
|
+
class DeletePolicyEngineCommand extends smithyClient.Command
|
|
4931
|
+
.classBuilder()
|
|
4932
|
+
.ep(commonParams)
|
|
4933
|
+
.m(function (Command, cs, config, o) {
|
|
4934
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4935
|
+
})
|
|
4936
|
+
.s("AmazonBedrockAgentCoreControl", "DeletePolicyEngine", {})
|
|
4937
|
+
.n("BedrockAgentCoreControlClient", "DeletePolicyEngineCommand")
|
|
4938
|
+
.sc(DeletePolicyEngine)
|
|
4939
|
+
.build() {
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4942
|
+
class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
4943
|
+
.classBuilder()
|
|
4944
|
+
.ep(commonParams)
|
|
4945
|
+
.m(function (Command, cs, config, o) {
|
|
4946
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4947
|
+
})
|
|
4948
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteResourcePolicy", {})
|
|
4949
|
+
.n("BedrockAgentCoreControlClient", "DeleteResourcePolicyCommand")
|
|
4950
|
+
.sc(DeleteResourcePolicy)
|
|
4951
|
+
.build() {
|
|
4952
|
+
}
|
|
4953
|
+
|
|
3630
4954
|
class DeleteWorkloadIdentityCommand extends smithyClient.Command
|
|
3631
4955
|
.classBuilder()
|
|
3632
4956
|
.ep(commonParams)
|
|
@@ -3699,6 +5023,18 @@ class GetCodeInterpreterCommand extends smithyClient.Command
|
|
|
3699
5023
|
.build() {
|
|
3700
5024
|
}
|
|
3701
5025
|
|
|
5026
|
+
class GetEvaluatorCommand extends smithyClient.Command
|
|
5027
|
+
.classBuilder()
|
|
5028
|
+
.ep(commonParams)
|
|
5029
|
+
.m(function (Command, cs, config, o) {
|
|
5030
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5031
|
+
})
|
|
5032
|
+
.s("AmazonBedrockAgentCoreControl", "GetEvaluator", {})
|
|
5033
|
+
.n("BedrockAgentCoreControlClient", "GetEvaluatorCommand")
|
|
5034
|
+
.sc(GetEvaluator)
|
|
5035
|
+
.build() {
|
|
5036
|
+
}
|
|
5037
|
+
|
|
3702
5038
|
class GetGatewayCommand extends smithyClient.Command
|
|
3703
5039
|
.classBuilder()
|
|
3704
5040
|
.ep(commonParams)
|
|
@@ -3747,6 +5083,66 @@ class GetOauth2CredentialProviderCommand extends smithyClient.Command
|
|
|
3747
5083
|
.build() {
|
|
3748
5084
|
}
|
|
3749
5085
|
|
|
5086
|
+
class GetOnlineEvaluationConfigCommand extends smithyClient.Command
|
|
5087
|
+
.classBuilder()
|
|
5088
|
+
.ep(commonParams)
|
|
5089
|
+
.m(function (Command, cs, config, o) {
|
|
5090
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5091
|
+
})
|
|
5092
|
+
.s("AmazonBedrockAgentCoreControl", "GetOnlineEvaluationConfig", {})
|
|
5093
|
+
.n("BedrockAgentCoreControlClient", "GetOnlineEvaluationConfigCommand")
|
|
5094
|
+
.sc(GetOnlineEvaluationConfig)
|
|
5095
|
+
.build() {
|
|
5096
|
+
}
|
|
5097
|
+
|
|
5098
|
+
class GetPolicyCommand extends smithyClient.Command
|
|
5099
|
+
.classBuilder()
|
|
5100
|
+
.ep(commonParams)
|
|
5101
|
+
.m(function (Command, cs, config, o) {
|
|
5102
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5103
|
+
})
|
|
5104
|
+
.s("AmazonBedrockAgentCoreControl", "GetPolicy", {})
|
|
5105
|
+
.n("BedrockAgentCoreControlClient", "GetPolicyCommand")
|
|
5106
|
+
.sc(GetPolicy)
|
|
5107
|
+
.build() {
|
|
5108
|
+
}
|
|
5109
|
+
|
|
5110
|
+
class GetPolicyEngineCommand extends smithyClient.Command
|
|
5111
|
+
.classBuilder()
|
|
5112
|
+
.ep(commonParams)
|
|
5113
|
+
.m(function (Command, cs, config, o) {
|
|
5114
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5115
|
+
})
|
|
5116
|
+
.s("AmazonBedrockAgentCoreControl", "GetPolicyEngine", {})
|
|
5117
|
+
.n("BedrockAgentCoreControlClient", "GetPolicyEngineCommand")
|
|
5118
|
+
.sc(GetPolicyEngine)
|
|
5119
|
+
.build() {
|
|
5120
|
+
}
|
|
5121
|
+
|
|
5122
|
+
class GetPolicyGenerationCommand extends smithyClient.Command
|
|
5123
|
+
.classBuilder()
|
|
5124
|
+
.ep(commonParams)
|
|
5125
|
+
.m(function (Command, cs, config, o) {
|
|
5126
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5127
|
+
})
|
|
5128
|
+
.s("AmazonBedrockAgentCoreControl", "GetPolicyGeneration", {})
|
|
5129
|
+
.n("BedrockAgentCoreControlClient", "GetPolicyGenerationCommand")
|
|
5130
|
+
.sc(GetPolicyGeneration)
|
|
5131
|
+
.build() {
|
|
5132
|
+
}
|
|
5133
|
+
|
|
5134
|
+
class GetResourcePolicyCommand extends smithyClient.Command
|
|
5135
|
+
.classBuilder()
|
|
5136
|
+
.ep(commonParams)
|
|
5137
|
+
.m(function (Command, cs, config, o) {
|
|
5138
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5139
|
+
})
|
|
5140
|
+
.s("AmazonBedrockAgentCoreControl", "GetResourcePolicy", {})
|
|
5141
|
+
.n("BedrockAgentCoreControlClient", "GetResourcePolicyCommand")
|
|
5142
|
+
.sc(GetResourcePolicy)
|
|
5143
|
+
.build() {
|
|
5144
|
+
}
|
|
5145
|
+
|
|
3750
5146
|
class GetTokenVaultCommand extends smithyClient.Command
|
|
3751
5147
|
.classBuilder()
|
|
3752
5148
|
.ep(commonParams)
|
|
@@ -3843,6 +5239,18 @@ class ListCodeInterpretersCommand extends smithyClient.Command
|
|
|
3843
5239
|
.build() {
|
|
3844
5240
|
}
|
|
3845
5241
|
|
|
5242
|
+
class ListEvaluatorsCommand extends smithyClient.Command
|
|
5243
|
+
.classBuilder()
|
|
5244
|
+
.ep(commonParams)
|
|
5245
|
+
.m(function (Command, cs, config, o) {
|
|
5246
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5247
|
+
})
|
|
5248
|
+
.s("AmazonBedrockAgentCoreControl", "ListEvaluators", {})
|
|
5249
|
+
.n("BedrockAgentCoreControlClient", "ListEvaluatorsCommand")
|
|
5250
|
+
.sc(ListEvaluators)
|
|
5251
|
+
.build() {
|
|
5252
|
+
}
|
|
5253
|
+
|
|
3846
5254
|
class ListGatewaysCommand extends smithyClient.Command
|
|
3847
5255
|
.classBuilder()
|
|
3848
5256
|
.ep(commonParams)
|
|
@@ -3891,7 +5299,67 @@ class ListOauth2CredentialProvidersCommand extends smithyClient.Command
|
|
|
3891
5299
|
.build() {
|
|
3892
5300
|
}
|
|
3893
5301
|
|
|
3894
|
-
class
|
|
5302
|
+
class ListOnlineEvaluationConfigsCommand extends smithyClient.Command
|
|
5303
|
+
.classBuilder()
|
|
5304
|
+
.ep(commonParams)
|
|
5305
|
+
.m(function (Command, cs, config, o) {
|
|
5306
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5307
|
+
})
|
|
5308
|
+
.s("AmazonBedrockAgentCoreControl", "ListOnlineEvaluationConfigs", {})
|
|
5309
|
+
.n("BedrockAgentCoreControlClient", "ListOnlineEvaluationConfigsCommand")
|
|
5310
|
+
.sc(ListOnlineEvaluationConfigs)
|
|
5311
|
+
.build() {
|
|
5312
|
+
}
|
|
5313
|
+
|
|
5314
|
+
class ListPoliciesCommand extends smithyClient.Command
|
|
5315
|
+
.classBuilder()
|
|
5316
|
+
.ep(commonParams)
|
|
5317
|
+
.m(function (Command, cs, config, o) {
|
|
5318
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5319
|
+
})
|
|
5320
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicies", {})
|
|
5321
|
+
.n("BedrockAgentCoreControlClient", "ListPoliciesCommand")
|
|
5322
|
+
.sc(ListPolicies)
|
|
5323
|
+
.build() {
|
|
5324
|
+
}
|
|
5325
|
+
|
|
5326
|
+
class ListPolicyEnginesCommand extends smithyClient.Command
|
|
5327
|
+
.classBuilder()
|
|
5328
|
+
.ep(commonParams)
|
|
5329
|
+
.m(function (Command, cs, config, o) {
|
|
5330
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5331
|
+
})
|
|
5332
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicyEngines", {})
|
|
5333
|
+
.n("BedrockAgentCoreControlClient", "ListPolicyEnginesCommand")
|
|
5334
|
+
.sc(ListPolicyEngines)
|
|
5335
|
+
.build() {
|
|
5336
|
+
}
|
|
5337
|
+
|
|
5338
|
+
class ListPolicyGenerationAssetsCommand extends smithyClient.Command
|
|
5339
|
+
.classBuilder()
|
|
5340
|
+
.ep(commonParams)
|
|
5341
|
+
.m(function (Command, cs, config, o) {
|
|
5342
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5343
|
+
})
|
|
5344
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicyGenerationAssets", {})
|
|
5345
|
+
.n("BedrockAgentCoreControlClient", "ListPolicyGenerationAssetsCommand")
|
|
5346
|
+
.sc(ListPolicyGenerationAssets)
|
|
5347
|
+
.build() {
|
|
5348
|
+
}
|
|
5349
|
+
|
|
5350
|
+
class ListPolicyGenerationsCommand extends smithyClient.Command
|
|
5351
|
+
.classBuilder()
|
|
5352
|
+
.ep(commonParams)
|
|
5353
|
+
.m(function (Command, cs, config, o) {
|
|
5354
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5355
|
+
})
|
|
5356
|
+
.s("AmazonBedrockAgentCoreControl", "ListPolicyGenerations", {})
|
|
5357
|
+
.n("BedrockAgentCoreControlClient", "ListPolicyGenerationsCommand")
|
|
5358
|
+
.sc(ListPolicyGenerations)
|
|
5359
|
+
.build() {
|
|
5360
|
+
}
|
|
5361
|
+
|
|
5362
|
+
class ListTagsForResourceCommand extends smithyClient.Command
|
|
3895
5363
|
.classBuilder()
|
|
3896
5364
|
.ep(commonParams)
|
|
3897
5365
|
.m(function (Command, cs, config, o) {
|
|
@@ -3915,6 +5383,18 @@ class ListWorkloadIdentitiesCommand extends smithyClient.Command
|
|
|
3915
5383
|
.build() {
|
|
3916
5384
|
}
|
|
3917
5385
|
|
|
5386
|
+
class PutResourcePolicyCommand extends smithyClient.Command
|
|
5387
|
+
.classBuilder()
|
|
5388
|
+
.ep(commonParams)
|
|
5389
|
+
.m(function (Command, cs, config, o) {
|
|
5390
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5391
|
+
})
|
|
5392
|
+
.s("AmazonBedrockAgentCoreControl", "PutResourcePolicy", {})
|
|
5393
|
+
.n("BedrockAgentCoreControlClient", "PutResourcePolicyCommand")
|
|
5394
|
+
.sc(PutResourcePolicy)
|
|
5395
|
+
.build() {
|
|
5396
|
+
}
|
|
5397
|
+
|
|
3918
5398
|
class SetTokenVaultCMKCommand extends smithyClient.Command
|
|
3919
5399
|
.classBuilder()
|
|
3920
5400
|
.ep(commonParams)
|
|
@@ -3927,6 +5407,18 @@ class SetTokenVaultCMKCommand extends smithyClient.Command
|
|
|
3927
5407
|
.build() {
|
|
3928
5408
|
}
|
|
3929
5409
|
|
|
5410
|
+
class StartPolicyGenerationCommand extends smithyClient.Command
|
|
5411
|
+
.classBuilder()
|
|
5412
|
+
.ep(commonParams)
|
|
5413
|
+
.m(function (Command, cs, config, o) {
|
|
5414
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5415
|
+
})
|
|
5416
|
+
.s("AmazonBedrockAgentCoreControl", "StartPolicyGeneration", {})
|
|
5417
|
+
.n("BedrockAgentCoreControlClient", "StartPolicyGenerationCommand")
|
|
5418
|
+
.sc(StartPolicyGeneration)
|
|
5419
|
+
.build() {
|
|
5420
|
+
}
|
|
5421
|
+
|
|
3930
5422
|
class SynchronizeGatewayTargetsCommand extends smithyClient.Command
|
|
3931
5423
|
.classBuilder()
|
|
3932
5424
|
.ep(commonParams)
|
|
@@ -3999,6 +5491,18 @@ class UpdateApiKeyCredentialProviderCommand extends smithyClient.Command
|
|
|
3999
5491
|
.build() {
|
|
4000
5492
|
}
|
|
4001
5493
|
|
|
5494
|
+
class UpdateEvaluatorCommand extends smithyClient.Command
|
|
5495
|
+
.classBuilder()
|
|
5496
|
+
.ep(commonParams)
|
|
5497
|
+
.m(function (Command, cs, config, o) {
|
|
5498
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5499
|
+
})
|
|
5500
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateEvaluator", {})
|
|
5501
|
+
.n("BedrockAgentCoreControlClient", "UpdateEvaluatorCommand")
|
|
5502
|
+
.sc(UpdateEvaluator)
|
|
5503
|
+
.build() {
|
|
5504
|
+
}
|
|
5505
|
+
|
|
4002
5506
|
class UpdateGatewayCommand extends smithyClient.Command
|
|
4003
5507
|
.classBuilder()
|
|
4004
5508
|
.ep(commonParams)
|
|
@@ -4047,6 +5551,42 @@ class UpdateOauth2CredentialProviderCommand extends smithyClient.Command
|
|
|
4047
5551
|
.build() {
|
|
4048
5552
|
}
|
|
4049
5553
|
|
|
5554
|
+
class UpdateOnlineEvaluationConfigCommand extends smithyClient.Command
|
|
5555
|
+
.classBuilder()
|
|
5556
|
+
.ep(commonParams)
|
|
5557
|
+
.m(function (Command, cs, config, o) {
|
|
5558
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5559
|
+
})
|
|
5560
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateOnlineEvaluationConfig", {})
|
|
5561
|
+
.n("BedrockAgentCoreControlClient", "UpdateOnlineEvaluationConfigCommand")
|
|
5562
|
+
.sc(UpdateOnlineEvaluationConfig)
|
|
5563
|
+
.build() {
|
|
5564
|
+
}
|
|
5565
|
+
|
|
5566
|
+
class UpdatePolicyCommand extends smithyClient.Command
|
|
5567
|
+
.classBuilder()
|
|
5568
|
+
.ep(commonParams)
|
|
5569
|
+
.m(function (Command, cs, config, o) {
|
|
5570
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5571
|
+
})
|
|
5572
|
+
.s("AmazonBedrockAgentCoreControl", "UpdatePolicy", {})
|
|
5573
|
+
.n("BedrockAgentCoreControlClient", "UpdatePolicyCommand")
|
|
5574
|
+
.sc(UpdatePolicy)
|
|
5575
|
+
.build() {
|
|
5576
|
+
}
|
|
5577
|
+
|
|
5578
|
+
class UpdatePolicyEngineCommand extends smithyClient.Command
|
|
5579
|
+
.classBuilder()
|
|
5580
|
+
.ep(commonParams)
|
|
5581
|
+
.m(function (Command, cs, config, o) {
|
|
5582
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5583
|
+
})
|
|
5584
|
+
.s("AmazonBedrockAgentCoreControl", "UpdatePolicyEngine", {})
|
|
5585
|
+
.n("BedrockAgentCoreControlClient", "UpdatePolicyEngineCommand")
|
|
5586
|
+
.sc(UpdatePolicyEngine)
|
|
5587
|
+
.build() {
|
|
5588
|
+
}
|
|
5589
|
+
|
|
4050
5590
|
class UpdateWorkloadIdentityCommand extends smithyClient.Command
|
|
4051
5591
|
.classBuilder()
|
|
4052
5592
|
.ep(commonParams)
|
|
@@ -4065,30 +5605,45 @@ const commands = {
|
|
|
4065
5605
|
CreateApiKeyCredentialProviderCommand,
|
|
4066
5606
|
CreateBrowserCommand,
|
|
4067
5607
|
CreateCodeInterpreterCommand,
|
|
5608
|
+
CreateEvaluatorCommand,
|
|
4068
5609
|
CreateGatewayCommand,
|
|
4069
5610
|
CreateGatewayTargetCommand,
|
|
4070
5611
|
CreateMemoryCommand,
|
|
4071
5612
|
CreateOauth2CredentialProviderCommand,
|
|
5613
|
+
CreateOnlineEvaluationConfigCommand,
|
|
5614
|
+
CreatePolicyCommand,
|
|
5615
|
+
CreatePolicyEngineCommand,
|
|
4072
5616
|
CreateWorkloadIdentityCommand,
|
|
4073
5617
|
DeleteAgentRuntimeCommand,
|
|
4074
5618
|
DeleteAgentRuntimeEndpointCommand,
|
|
4075
5619
|
DeleteApiKeyCredentialProviderCommand,
|
|
4076
5620
|
DeleteBrowserCommand,
|
|
4077
5621
|
DeleteCodeInterpreterCommand,
|
|
5622
|
+
DeleteEvaluatorCommand,
|
|
4078
5623
|
DeleteGatewayCommand,
|
|
4079
5624
|
DeleteGatewayTargetCommand,
|
|
4080
5625
|
DeleteMemoryCommand,
|
|
4081
5626
|
DeleteOauth2CredentialProviderCommand,
|
|
5627
|
+
DeleteOnlineEvaluationConfigCommand,
|
|
5628
|
+
DeletePolicyCommand,
|
|
5629
|
+
DeletePolicyEngineCommand,
|
|
5630
|
+
DeleteResourcePolicyCommand,
|
|
4082
5631
|
DeleteWorkloadIdentityCommand,
|
|
4083
5632
|
GetAgentRuntimeCommand,
|
|
4084
5633
|
GetAgentRuntimeEndpointCommand,
|
|
4085
5634
|
GetApiKeyCredentialProviderCommand,
|
|
4086
5635
|
GetBrowserCommand,
|
|
4087
5636
|
GetCodeInterpreterCommand,
|
|
5637
|
+
GetEvaluatorCommand,
|
|
4088
5638
|
GetGatewayCommand,
|
|
4089
5639
|
GetGatewayTargetCommand,
|
|
4090
5640
|
GetMemoryCommand,
|
|
4091
5641
|
GetOauth2CredentialProviderCommand,
|
|
5642
|
+
GetOnlineEvaluationConfigCommand,
|
|
5643
|
+
GetPolicyCommand,
|
|
5644
|
+
GetPolicyEngineCommand,
|
|
5645
|
+
GetPolicyGenerationCommand,
|
|
5646
|
+
GetResourcePolicyCommand,
|
|
4092
5647
|
GetTokenVaultCommand,
|
|
4093
5648
|
GetWorkloadIdentityCommand,
|
|
4094
5649
|
ListAgentRuntimeEndpointsCommand,
|
|
@@ -4097,23 +5652,35 @@ const commands = {
|
|
|
4097
5652
|
ListApiKeyCredentialProvidersCommand,
|
|
4098
5653
|
ListBrowsersCommand,
|
|
4099
5654
|
ListCodeInterpretersCommand,
|
|
5655
|
+
ListEvaluatorsCommand,
|
|
4100
5656
|
ListGatewaysCommand,
|
|
4101
5657
|
ListGatewayTargetsCommand,
|
|
4102
5658
|
ListMemoriesCommand,
|
|
4103
5659
|
ListOauth2CredentialProvidersCommand,
|
|
5660
|
+
ListOnlineEvaluationConfigsCommand,
|
|
5661
|
+
ListPoliciesCommand,
|
|
5662
|
+
ListPolicyEnginesCommand,
|
|
5663
|
+
ListPolicyGenerationAssetsCommand,
|
|
5664
|
+
ListPolicyGenerationsCommand,
|
|
4104
5665
|
ListTagsForResourceCommand,
|
|
4105
5666
|
ListWorkloadIdentitiesCommand,
|
|
5667
|
+
PutResourcePolicyCommand,
|
|
4106
5668
|
SetTokenVaultCMKCommand,
|
|
5669
|
+
StartPolicyGenerationCommand,
|
|
4107
5670
|
SynchronizeGatewayTargetsCommand,
|
|
4108
5671
|
TagResourceCommand,
|
|
4109
5672
|
UntagResourceCommand,
|
|
4110
5673
|
UpdateAgentRuntimeCommand,
|
|
4111
5674
|
UpdateAgentRuntimeEndpointCommand,
|
|
4112
5675
|
UpdateApiKeyCredentialProviderCommand,
|
|
5676
|
+
UpdateEvaluatorCommand,
|
|
4113
5677
|
UpdateGatewayCommand,
|
|
4114
5678
|
UpdateGatewayTargetCommand,
|
|
4115
5679
|
UpdateMemoryCommand,
|
|
4116
5680
|
UpdateOauth2CredentialProviderCommand,
|
|
5681
|
+
UpdateOnlineEvaluationConfigCommand,
|
|
5682
|
+
UpdatePolicyCommand,
|
|
5683
|
+
UpdatePolicyEngineCommand,
|
|
4117
5684
|
UpdateWorkloadIdentityCommand,
|
|
4118
5685
|
};
|
|
4119
5686
|
class BedrockAgentCoreControl extends BedrockAgentCoreControlClient {
|
|
@@ -4132,6 +5699,8 @@ const paginateListBrowsers = core.createPaginator(BedrockAgentCoreControlClient,
|
|
|
4132
5699
|
|
|
4133
5700
|
const paginateListCodeInterpreters = core.createPaginator(BedrockAgentCoreControlClient, ListCodeInterpretersCommand, "nextToken", "nextToken", "maxResults");
|
|
4134
5701
|
|
|
5702
|
+
const paginateListEvaluators = core.createPaginator(BedrockAgentCoreControlClient, ListEvaluatorsCommand, "nextToken", "nextToken", "maxResults");
|
|
5703
|
+
|
|
4135
5704
|
const paginateListGatewayTargets = core.createPaginator(BedrockAgentCoreControlClient, ListGatewayTargetsCommand, "nextToken", "nextToken", "maxResults");
|
|
4136
5705
|
|
|
4137
5706
|
const paginateListGateways = core.createPaginator(BedrockAgentCoreControlClient, ListGatewaysCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -4140,9 +5709,19 @@ const paginateListMemories = core.createPaginator(BedrockAgentCoreControlClient,
|
|
|
4140
5709
|
|
|
4141
5710
|
const paginateListOauth2CredentialProviders = core.createPaginator(BedrockAgentCoreControlClient, ListOauth2CredentialProvidersCommand, "nextToken", "nextToken", "maxResults");
|
|
4142
5711
|
|
|
5712
|
+
const paginateListOnlineEvaluationConfigs = core.createPaginator(BedrockAgentCoreControlClient, ListOnlineEvaluationConfigsCommand, "nextToken", "nextToken", "maxResults");
|
|
5713
|
+
|
|
5714
|
+
const paginateListPolicies = core.createPaginator(BedrockAgentCoreControlClient, ListPoliciesCommand, "nextToken", "nextToken", "maxResults");
|
|
5715
|
+
|
|
5716
|
+
const paginateListPolicyEngines = core.createPaginator(BedrockAgentCoreControlClient, ListPolicyEnginesCommand, "nextToken", "nextToken", "maxResults");
|
|
5717
|
+
|
|
5718
|
+
const paginateListPolicyGenerationAssets = core.createPaginator(BedrockAgentCoreControlClient, ListPolicyGenerationAssetsCommand, "nextToken", "nextToken", "maxResults");
|
|
5719
|
+
|
|
5720
|
+
const paginateListPolicyGenerations = core.createPaginator(BedrockAgentCoreControlClient, ListPolicyGenerationsCommand, "nextToken", "nextToken", "maxResults");
|
|
5721
|
+
|
|
4143
5722
|
const paginateListWorkloadIdentities = core.createPaginator(BedrockAgentCoreControlClient, ListWorkloadIdentitiesCommand, "nextToken", "nextToken", "maxResults");
|
|
4144
5723
|
|
|
4145
|
-
const checkState = async (client, input) => {
|
|
5724
|
+
const checkState$5 = async (client, input) => {
|
|
4146
5725
|
let reason;
|
|
4147
5726
|
try {
|
|
4148
5727
|
const result = await client.send(new GetMemoryCommand(input));
|
|
@@ -4182,9 +5761,264 @@ const checkState = async (client, input) => {
|
|
|
4182
5761
|
};
|
|
4183
5762
|
const waitForMemoryCreated = async (params, input) => {
|
|
4184
5763
|
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
4185
|
-
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
5764
|
+
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
4186
5765
|
};
|
|
4187
5766
|
const waitUntilMemoryCreated = async (params, input) => {
|
|
5767
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5768
|
+
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
5769
|
+
return utilWaiter.checkExceptions(result);
|
|
5770
|
+
};
|
|
5771
|
+
|
|
5772
|
+
const checkState$4 = async (client, input) => {
|
|
5773
|
+
let reason;
|
|
5774
|
+
try {
|
|
5775
|
+
const result = await client.send(new GetPolicyCommand(input));
|
|
5776
|
+
reason = result;
|
|
5777
|
+
try {
|
|
5778
|
+
const returnComparator = () => {
|
|
5779
|
+
return result.status;
|
|
5780
|
+
};
|
|
5781
|
+
if (returnComparator() === "ACTIVE") {
|
|
5782
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
5783
|
+
}
|
|
5784
|
+
}
|
|
5785
|
+
catch (e) { }
|
|
5786
|
+
try {
|
|
5787
|
+
const returnComparator = () => {
|
|
5788
|
+
return result.status;
|
|
5789
|
+
};
|
|
5790
|
+
if (returnComparator() === "CREATE_FAILED") {
|
|
5791
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5792
|
+
}
|
|
5793
|
+
}
|
|
5794
|
+
catch (e) { }
|
|
5795
|
+
try {
|
|
5796
|
+
const returnComparator = () => {
|
|
5797
|
+
return result.status;
|
|
5798
|
+
};
|
|
5799
|
+
if (returnComparator() === "UPDATE_FAILED") {
|
|
5800
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5801
|
+
}
|
|
5802
|
+
}
|
|
5803
|
+
catch (e) { }
|
|
5804
|
+
try {
|
|
5805
|
+
const returnComparator = () => {
|
|
5806
|
+
return result.status;
|
|
5807
|
+
};
|
|
5808
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
5809
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5810
|
+
}
|
|
5811
|
+
}
|
|
5812
|
+
catch (e) { }
|
|
5813
|
+
}
|
|
5814
|
+
catch (exception) {
|
|
5815
|
+
reason = exception;
|
|
5816
|
+
}
|
|
5817
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
5818
|
+
};
|
|
5819
|
+
const waitForPolicyActive = async (params, input) => {
|
|
5820
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5821
|
+
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
5822
|
+
};
|
|
5823
|
+
const waitUntilPolicyActive = async (params, input) => {
|
|
5824
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5825
|
+
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
5826
|
+
return utilWaiter.checkExceptions(result);
|
|
5827
|
+
};
|
|
5828
|
+
|
|
5829
|
+
const checkState$3 = async (client, input) => {
|
|
5830
|
+
let reason;
|
|
5831
|
+
try {
|
|
5832
|
+
const result = await client.send(new GetPolicyCommand(input));
|
|
5833
|
+
reason = result;
|
|
5834
|
+
try {
|
|
5835
|
+
const returnComparator = () => {
|
|
5836
|
+
return result.status;
|
|
5837
|
+
};
|
|
5838
|
+
if (returnComparator() === "DELETING") {
|
|
5839
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
5840
|
+
}
|
|
5841
|
+
}
|
|
5842
|
+
catch (e) { }
|
|
5843
|
+
try {
|
|
5844
|
+
const returnComparator = () => {
|
|
5845
|
+
return result.status;
|
|
5846
|
+
};
|
|
5847
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
5848
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5849
|
+
}
|
|
5850
|
+
}
|
|
5851
|
+
catch (e) { }
|
|
5852
|
+
}
|
|
5853
|
+
catch (exception) {
|
|
5854
|
+
reason = exception;
|
|
5855
|
+
if (exception.name && exception.name == "ResourceNotFoundException") {
|
|
5856
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
5857
|
+
}
|
|
5858
|
+
}
|
|
5859
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
5860
|
+
};
|
|
5861
|
+
const waitForPolicyDeleted = async (params, input) => {
|
|
5862
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5863
|
+
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
5864
|
+
};
|
|
5865
|
+
const waitUntilPolicyDeleted = async (params, input) => {
|
|
5866
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5867
|
+
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
5868
|
+
return utilWaiter.checkExceptions(result);
|
|
5869
|
+
};
|
|
5870
|
+
|
|
5871
|
+
const checkState$2 = async (client, input) => {
|
|
5872
|
+
let reason;
|
|
5873
|
+
try {
|
|
5874
|
+
const result = await client.send(new GetPolicyEngineCommand(input));
|
|
5875
|
+
reason = result;
|
|
5876
|
+
try {
|
|
5877
|
+
const returnComparator = () => {
|
|
5878
|
+
return result.status;
|
|
5879
|
+
};
|
|
5880
|
+
if (returnComparator() === "ACTIVE") {
|
|
5881
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
5882
|
+
}
|
|
5883
|
+
}
|
|
5884
|
+
catch (e) { }
|
|
5885
|
+
try {
|
|
5886
|
+
const returnComparator = () => {
|
|
5887
|
+
return result.status;
|
|
5888
|
+
};
|
|
5889
|
+
if (returnComparator() === "CREATE_FAILED") {
|
|
5890
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5891
|
+
}
|
|
5892
|
+
}
|
|
5893
|
+
catch (e) { }
|
|
5894
|
+
try {
|
|
5895
|
+
const returnComparator = () => {
|
|
5896
|
+
return result.status;
|
|
5897
|
+
};
|
|
5898
|
+
if (returnComparator() === "UPDATE_FAILED") {
|
|
5899
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5900
|
+
}
|
|
5901
|
+
}
|
|
5902
|
+
catch (e) { }
|
|
5903
|
+
try {
|
|
5904
|
+
const returnComparator = () => {
|
|
5905
|
+
return result.status;
|
|
5906
|
+
};
|
|
5907
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
5908
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5909
|
+
}
|
|
5910
|
+
}
|
|
5911
|
+
catch (e) { }
|
|
5912
|
+
}
|
|
5913
|
+
catch (exception) {
|
|
5914
|
+
reason = exception;
|
|
5915
|
+
}
|
|
5916
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
5917
|
+
};
|
|
5918
|
+
const waitForPolicyEngineActive = async (params, input) => {
|
|
5919
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5920
|
+
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
5921
|
+
};
|
|
5922
|
+
const waitUntilPolicyEngineActive = async (params, input) => {
|
|
5923
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5924
|
+
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
5925
|
+
return utilWaiter.checkExceptions(result);
|
|
5926
|
+
};
|
|
5927
|
+
|
|
5928
|
+
const checkState$1 = async (client, input) => {
|
|
5929
|
+
let reason;
|
|
5930
|
+
try {
|
|
5931
|
+
const result = await client.send(new GetPolicyEngineCommand(input));
|
|
5932
|
+
reason = result;
|
|
5933
|
+
try {
|
|
5934
|
+
const returnComparator = () => {
|
|
5935
|
+
return result.status;
|
|
5936
|
+
};
|
|
5937
|
+
if (returnComparator() === "DELETING") {
|
|
5938
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
5939
|
+
}
|
|
5940
|
+
}
|
|
5941
|
+
catch (e) { }
|
|
5942
|
+
try {
|
|
5943
|
+
const returnComparator = () => {
|
|
5944
|
+
return result.status;
|
|
5945
|
+
};
|
|
5946
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
5947
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5948
|
+
}
|
|
5949
|
+
}
|
|
5950
|
+
catch (e) { }
|
|
5951
|
+
}
|
|
5952
|
+
catch (exception) {
|
|
5953
|
+
reason = exception;
|
|
5954
|
+
if (exception.name && exception.name == "ResourceNotFoundException") {
|
|
5955
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
5956
|
+
}
|
|
5957
|
+
}
|
|
5958
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
5959
|
+
};
|
|
5960
|
+
const waitForPolicyEngineDeleted = async (params, input) => {
|
|
5961
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5962
|
+
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
5963
|
+
};
|
|
5964
|
+
const waitUntilPolicyEngineDeleted = async (params, input) => {
|
|
5965
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
5966
|
+
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
5967
|
+
return utilWaiter.checkExceptions(result);
|
|
5968
|
+
};
|
|
5969
|
+
|
|
5970
|
+
const checkState = async (client, input) => {
|
|
5971
|
+
let reason;
|
|
5972
|
+
try {
|
|
5973
|
+
const result = await client.send(new GetPolicyGenerationCommand(input));
|
|
5974
|
+
reason = result;
|
|
5975
|
+
try {
|
|
5976
|
+
const returnComparator = () => {
|
|
5977
|
+
return result.status;
|
|
5978
|
+
};
|
|
5979
|
+
if (returnComparator() === "GENERATED") {
|
|
5980
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
5981
|
+
}
|
|
5982
|
+
}
|
|
5983
|
+
catch (e) { }
|
|
5984
|
+
try {
|
|
5985
|
+
const returnComparator = () => {
|
|
5986
|
+
return result.status;
|
|
5987
|
+
};
|
|
5988
|
+
if (returnComparator() === "GENERATING") {
|
|
5989
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
5990
|
+
}
|
|
5991
|
+
}
|
|
5992
|
+
catch (e) { }
|
|
5993
|
+
try {
|
|
5994
|
+
const returnComparator = () => {
|
|
5995
|
+
return result.status;
|
|
5996
|
+
};
|
|
5997
|
+
if (returnComparator() === "GENERATE_FAILED") {
|
|
5998
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
5999
|
+
}
|
|
6000
|
+
}
|
|
6001
|
+
catch (e) { }
|
|
6002
|
+
try {
|
|
6003
|
+
const returnComparator = () => {
|
|
6004
|
+
return result.status;
|
|
6005
|
+
};
|
|
6006
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
6007
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
6008
|
+
}
|
|
6009
|
+
}
|
|
6010
|
+
catch (e) { }
|
|
6011
|
+
}
|
|
6012
|
+
catch (exception) {
|
|
6013
|
+
reason = exception;
|
|
6014
|
+
}
|
|
6015
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
6016
|
+
};
|
|
6017
|
+
const waitForPolicyGenerationCompleted = async (params, input) => {
|
|
6018
|
+
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
6019
|
+
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
6020
|
+
};
|
|
6021
|
+
const waitUntilPolicyGenerationCompleted = async (params, input) => {
|
|
4188
6022
|
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
4189
6023
|
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
4190
6024
|
return utilWaiter.checkExceptions(result);
|
|
@@ -4211,6 +6045,15 @@ const AgentManagedRuntimeType = {
|
|
|
4211
6045
|
PYTHON_3_12: "PYTHON_3_12",
|
|
4212
6046
|
PYTHON_3_13: "PYTHON_3_13",
|
|
4213
6047
|
};
|
|
6048
|
+
const ClaimMatchOperatorType = {
|
|
6049
|
+
CONTAINS: "CONTAINS",
|
|
6050
|
+
CONTAINS_ANY: "CONTAINS_ANY",
|
|
6051
|
+
EQUALS: "EQUALS",
|
|
6052
|
+
};
|
|
6053
|
+
const InboundTokenClaimValueType = {
|
|
6054
|
+
STRING: "STRING",
|
|
6055
|
+
STRING_ARRAY: "STRING_ARRAY",
|
|
6056
|
+
};
|
|
4214
6057
|
const NetworkMode = {
|
|
4215
6058
|
PUBLIC: "PUBLIC",
|
|
4216
6059
|
VPC: "VPC",
|
|
@@ -4257,6 +6100,23 @@ const CodeInterpreterStatus = {
|
|
|
4257
6100
|
DELETING: "DELETING",
|
|
4258
6101
|
READY: "READY",
|
|
4259
6102
|
};
|
|
6103
|
+
const EvaluatorLevel = {
|
|
6104
|
+
SESSION: "SESSION",
|
|
6105
|
+
TOOL_CALL: "TOOL_CALL",
|
|
6106
|
+
TRACE: "TRACE",
|
|
6107
|
+
};
|
|
6108
|
+
const EvaluatorStatus = {
|
|
6109
|
+
ACTIVE: "ACTIVE",
|
|
6110
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
6111
|
+
CREATING: "CREATING",
|
|
6112
|
+
DELETING: "DELETING",
|
|
6113
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
6114
|
+
UPDATING: "UPDATING",
|
|
6115
|
+
};
|
|
6116
|
+
const EvaluatorType = {
|
|
6117
|
+
BUILTIN: "Builtin",
|
|
6118
|
+
CUSTOM: "Custom",
|
|
6119
|
+
};
|
|
4260
6120
|
const AuthorizerType = {
|
|
4261
6121
|
AWS_IAM: "AWS_IAM",
|
|
4262
6122
|
CUSTOM_JWT: "CUSTOM_JWT",
|
|
@@ -4269,6 +6129,10 @@ const GatewayInterceptionPoint = {
|
|
|
4269
6129
|
REQUEST: "REQUEST",
|
|
4270
6130
|
RESPONSE: "RESPONSE",
|
|
4271
6131
|
};
|
|
6132
|
+
const GatewayPolicyEngineMode = {
|
|
6133
|
+
ENFORCE: "ENFORCE",
|
|
6134
|
+
LOG_ONLY: "LOG_ONLY",
|
|
6135
|
+
};
|
|
4272
6136
|
const SearchType = {
|
|
4273
6137
|
SEMANTIC: "SEMANTIC",
|
|
4274
6138
|
};
|
|
@@ -4287,11 +6151,24 @@ const ApiKeyCredentialLocation = {
|
|
|
4287
6151
|
HEADER: "HEADER",
|
|
4288
6152
|
QUERY_PARAMETER: "QUERY_PARAMETER",
|
|
4289
6153
|
};
|
|
6154
|
+
const OAuthGrantType = {
|
|
6155
|
+
AUTHORIZATION_CODE: "AUTHORIZATION_CODE",
|
|
6156
|
+
CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
|
|
6157
|
+
};
|
|
4290
6158
|
const CredentialProviderType = {
|
|
4291
6159
|
API_KEY: "API_KEY",
|
|
4292
6160
|
GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE",
|
|
4293
6161
|
OAUTH: "OAUTH",
|
|
4294
6162
|
};
|
|
6163
|
+
const RestApiMethod = {
|
|
6164
|
+
DELETE: "DELETE",
|
|
6165
|
+
GET: "GET",
|
|
6166
|
+
HEAD: "HEAD",
|
|
6167
|
+
OPTIONS: "OPTIONS",
|
|
6168
|
+
PATCH: "PATCH",
|
|
6169
|
+
POST: "POST",
|
|
6170
|
+
PUT: "PUT",
|
|
6171
|
+
};
|
|
4295
6172
|
const SchemaType = {
|
|
4296
6173
|
ARRAY: "array",
|
|
4297
6174
|
BOOLEAN: "boolean",
|
|
@@ -4321,6 +6198,7 @@ const MemoryStatus = {
|
|
|
4321
6198
|
FAILED: "FAILED",
|
|
4322
6199
|
};
|
|
4323
6200
|
const OverrideType = {
|
|
6201
|
+
EPISODIC_OVERRIDE: "EPISODIC_OVERRIDE",
|
|
4324
6202
|
SELF_MANAGED: "SELF_MANAGED",
|
|
4325
6203
|
SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE",
|
|
4326
6204
|
SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE",
|
|
@@ -4334,6 +6212,7 @@ const MemoryStrategyStatus = {
|
|
|
4334
6212
|
};
|
|
4335
6213
|
const MemoryStrategyType = {
|
|
4336
6214
|
CUSTOM: "CUSTOM",
|
|
6215
|
+
EPISODIC: "EPISODIC",
|
|
4337
6216
|
SEMANTIC: "SEMANTIC",
|
|
4338
6217
|
SUMMARIZATION: "SUMMARIZATION",
|
|
4339
6218
|
USER_PREFERENCE: "USER_PREFERENCE",
|
|
@@ -4365,6 +6244,65 @@ const CredentialProviderVendorType = {
|
|
|
4365
6244
|
YandexOauth2: "YandexOauth2",
|
|
4366
6245
|
ZoomOauth2: "ZoomOauth2",
|
|
4367
6246
|
};
|
|
6247
|
+
const FilterOperator = {
|
|
6248
|
+
CONTAINS: "Contains",
|
|
6249
|
+
EQUALS: "Equals",
|
|
6250
|
+
GREATER_THAN: "GreaterThan",
|
|
6251
|
+
GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual",
|
|
6252
|
+
LESS_THAN: "LessThan",
|
|
6253
|
+
LESS_THAN_OR_EQUAL: "LessThanOrEqual",
|
|
6254
|
+
NOT_CONTAINS: "NotContains",
|
|
6255
|
+
NOT_EQUALS: "NotEquals",
|
|
6256
|
+
};
|
|
6257
|
+
const OnlineEvaluationExecutionStatus = {
|
|
6258
|
+
DISABLED: "DISABLED",
|
|
6259
|
+
ENABLED: "ENABLED",
|
|
6260
|
+
};
|
|
6261
|
+
const OnlineEvaluationConfigStatus = {
|
|
6262
|
+
ACTIVE: "ACTIVE",
|
|
6263
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
6264
|
+
CREATING: "CREATING",
|
|
6265
|
+
DELETING: "DELETING",
|
|
6266
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
6267
|
+
UPDATING: "UPDATING",
|
|
6268
|
+
};
|
|
6269
|
+
const PolicyEngineStatus = {
|
|
6270
|
+
ACTIVE: "ACTIVE",
|
|
6271
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
6272
|
+
CREATING: "CREATING",
|
|
6273
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
6274
|
+
DELETING: "DELETING",
|
|
6275
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
6276
|
+
UPDATING: "UPDATING",
|
|
6277
|
+
};
|
|
6278
|
+
const PolicyGenerationStatus = {
|
|
6279
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
6280
|
+
GENERATED: "GENERATED",
|
|
6281
|
+
GENERATE_FAILED: "GENERATE_FAILED",
|
|
6282
|
+
GENERATING: "GENERATING",
|
|
6283
|
+
};
|
|
6284
|
+
const FindingType = {
|
|
6285
|
+
ALLOW_ALL: "ALLOW_ALL",
|
|
6286
|
+
ALLOW_NONE: "ALLOW_NONE",
|
|
6287
|
+
DENY_ALL: "DENY_ALL",
|
|
6288
|
+
DENY_NONE: "DENY_NONE",
|
|
6289
|
+
INVALID: "INVALID",
|
|
6290
|
+
NOT_TRANSLATABLE: "NOT_TRANSLATABLE",
|
|
6291
|
+
VALID: "VALID",
|
|
6292
|
+
};
|
|
6293
|
+
const PolicyValidationMode = {
|
|
6294
|
+
FAIL_ON_ANY_FINDINGS: "FAIL_ON_ANY_FINDINGS",
|
|
6295
|
+
IGNORE_ALL_FINDINGS: "IGNORE_ALL_FINDINGS",
|
|
6296
|
+
};
|
|
6297
|
+
const PolicyStatus = {
|
|
6298
|
+
ACTIVE: "ACTIVE",
|
|
6299
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
6300
|
+
CREATING: "CREATING",
|
|
6301
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
6302
|
+
DELETING: "DELETING",
|
|
6303
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
6304
|
+
UPDATING: "UPDATING",
|
|
6305
|
+
};
|
|
4368
6306
|
|
|
4369
6307
|
Object.defineProperty(exports, "$Command", {
|
|
4370
6308
|
enumerable: true,
|
|
@@ -4385,6 +6323,7 @@ exports.BedrockAgentCoreControlClient = BedrockAgentCoreControlClient;
|
|
|
4385
6323
|
exports.BedrockAgentCoreControlServiceException = BedrockAgentCoreControlServiceException$1;
|
|
4386
6324
|
exports.BrowserNetworkMode = BrowserNetworkMode;
|
|
4387
6325
|
exports.BrowserStatus = BrowserStatus;
|
|
6326
|
+
exports.ClaimMatchOperatorType = ClaimMatchOperatorType;
|
|
4388
6327
|
exports.CodeInterpreterNetworkMode = CodeInterpreterNetworkMode;
|
|
4389
6328
|
exports.CodeInterpreterStatus = CodeInterpreterStatus;
|
|
4390
6329
|
exports.ConcurrentModificationException = ConcurrentModificationException$1;
|
|
@@ -4394,10 +6333,14 @@ exports.CreateAgentRuntimeEndpointCommand = CreateAgentRuntimeEndpointCommand;
|
|
|
4394
6333
|
exports.CreateApiKeyCredentialProviderCommand = CreateApiKeyCredentialProviderCommand;
|
|
4395
6334
|
exports.CreateBrowserCommand = CreateBrowserCommand;
|
|
4396
6335
|
exports.CreateCodeInterpreterCommand = CreateCodeInterpreterCommand;
|
|
6336
|
+
exports.CreateEvaluatorCommand = CreateEvaluatorCommand;
|
|
4397
6337
|
exports.CreateGatewayCommand = CreateGatewayCommand;
|
|
4398
6338
|
exports.CreateGatewayTargetCommand = CreateGatewayTargetCommand;
|
|
4399
6339
|
exports.CreateMemoryCommand = CreateMemoryCommand;
|
|
4400
6340
|
exports.CreateOauth2CredentialProviderCommand = CreateOauth2CredentialProviderCommand;
|
|
6341
|
+
exports.CreateOnlineEvaluationConfigCommand = CreateOnlineEvaluationConfigCommand;
|
|
6342
|
+
exports.CreatePolicyCommand = CreatePolicyCommand;
|
|
6343
|
+
exports.CreatePolicyEngineCommand = CreatePolicyEngineCommand;
|
|
4401
6344
|
exports.CreateWorkloadIdentityCommand = CreateWorkloadIdentityCommand;
|
|
4402
6345
|
exports.CredentialProviderType = CredentialProviderType;
|
|
4403
6346
|
exports.CredentialProviderVendorType = CredentialProviderVendorType;
|
|
@@ -4407,14 +6350,25 @@ exports.DeleteAgentRuntimeEndpointCommand = DeleteAgentRuntimeEndpointCommand;
|
|
|
4407
6350
|
exports.DeleteApiKeyCredentialProviderCommand = DeleteApiKeyCredentialProviderCommand;
|
|
4408
6351
|
exports.DeleteBrowserCommand = DeleteBrowserCommand;
|
|
4409
6352
|
exports.DeleteCodeInterpreterCommand = DeleteCodeInterpreterCommand;
|
|
6353
|
+
exports.DeleteEvaluatorCommand = DeleteEvaluatorCommand;
|
|
4410
6354
|
exports.DeleteGatewayCommand = DeleteGatewayCommand;
|
|
4411
6355
|
exports.DeleteGatewayTargetCommand = DeleteGatewayTargetCommand;
|
|
4412
6356
|
exports.DeleteMemoryCommand = DeleteMemoryCommand;
|
|
4413
6357
|
exports.DeleteOauth2CredentialProviderCommand = DeleteOauth2CredentialProviderCommand;
|
|
6358
|
+
exports.DeleteOnlineEvaluationConfigCommand = DeleteOnlineEvaluationConfigCommand;
|
|
6359
|
+
exports.DeletePolicyCommand = DeletePolicyCommand;
|
|
6360
|
+
exports.DeletePolicyEngineCommand = DeletePolicyEngineCommand;
|
|
6361
|
+
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
4414
6362
|
exports.DeleteWorkloadIdentityCommand = DeleteWorkloadIdentityCommand;
|
|
4415
6363
|
exports.EncryptionFailure = EncryptionFailure$1;
|
|
6364
|
+
exports.EvaluatorLevel = EvaluatorLevel;
|
|
6365
|
+
exports.EvaluatorStatus = EvaluatorStatus;
|
|
6366
|
+
exports.EvaluatorType = EvaluatorType;
|
|
4416
6367
|
exports.ExceptionLevel = ExceptionLevel;
|
|
6368
|
+
exports.FilterOperator = FilterOperator;
|
|
6369
|
+
exports.FindingType = FindingType;
|
|
4417
6370
|
exports.GatewayInterceptionPoint = GatewayInterceptionPoint;
|
|
6371
|
+
exports.GatewayPolicyEngineMode = GatewayPolicyEngineMode;
|
|
4418
6372
|
exports.GatewayProtocolType = GatewayProtocolType;
|
|
4419
6373
|
exports.GatewayStatus = GatewayStatus;
|
|
4420
6374
|
exports.GetAgentRuntimeCommand = GetAgentRuntimeCommand;
|
|
@@ -4422,12 +6376,19 @@ exports.GetAgentRuntimeEndpointCommand = GetAgentRuntimeEndpointCommand;
|
|
|
4422
6376
|
exports.GetApiKeyCredentialProviderCommand = GetApiKeyCredentialProviderCommand;
|
|
4423
6377
|
exports.GetBrowserCommand = GetBrowserCommand;
|
|
4424
6378
|
exports.GetCodeInterpreterCommand = GetCodeInterpreterCommand;
|
|
6379
|
+
exports.GetEvaluatorCommand = GetEvaluatorCommand;
|
|
4425
6380
|
exports.GetGatewayCommand = GetGatewayCommand;
|
|
4426
6381
|
exports.GetGatewayTargetCommand = GetGatewayTargetCommand;
|
|
4427
6382
|
exports.GetMemoryCommand = GetMemoryCommand;
|
|
4428
6383
|
exports.GetOauth2CredentialProviderCommand = GetOauth2CredentialProviderCommand;
|
|
6384
|
+
exports.GetOnlineEvaluationConfigCommand = GetOnlineEvaluationConfigCommand;
|
|
6385
|
+
exports.GetPolicyCommand = GetPolicyCommand;
|
|
6386
|
+
exports.GetPolicyEngineCommand = GetPolicyEngineCommand;
|
|
6387
|
+
exports.GetPolicyGenerationCommand = GetPolicyGenerationCommand;
|
|
6388
|
+
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
4429
6389
|
exports.GetTokenVaultCommand = GetTokenVaultCommand;
|
|
4430
6390
|
exports.GetWorkloadIdentityCommand = GetWorkloadIdentityCommand;
|
|
6391
|
+
exports.InboundTokenClaimValueType = InboundTokenClaimValueType;
|
|
4431
6392
|
exports.InternalServerException = InternalServerException$1;
|
|
4432
6393
|
exports.KeyType = KeyType;
|
|
4433
6394
|
exports.ListAgentRuntimeEndpointsCommand = ListAgentRuntimeEndpointsCommand;
|
|
@@ -4436,26 +6397,42 @@ exports.ListAgentRuntimesCommand = ListAgentRuntimesCommand;
|
|
|
4436
6397
|
exports.ListApiKeyCredentialProvidersCommand = ListApiKeyCredentialProvidersCommand;
|
|
4437
6398
|
exports.ListBrowsersCommand = ListBrowsersCommand;
|
|
4438
6399
|
exports.ListCodeInterpretersCommand = ListCodeInterpretersCommand;
|
|
6400
|
+
exports.ListEvaluatorsCommand = ListEvaluatorsCommand;
|
|
4439
6401
|
exports.ListGatewayTargetsCommand = ListGatewayTargetsCommand;
|
|
4440
6402
|
exports.ListGatewaysCommand = ListGatewaysCommand;
|
|
4441
6403
|
exports.ListMemoriesCommand = ListMemoriesCommand;
|
|
4442
6404
|
exports.ListOauth2CredentialProvidersCommand = ListOauth2CredentialProvidersCommand;
|
|
6405
|
+
exports.ListOnlineEvaluationConfigsCommand = ListOnlineEvaluationConfigsCommand;
|
|
6406
|
+
exports.ListPoliciesCommand = ListPoliciesCommand;
|
|
6407
|
+
exports.ListPolicyEnginesCommand = ListPolicyEnginesCommand;
|
|
6408
|
+
exports.ListPolicyGenerationAssetsCommand = ListPolicyGenerationAssetsCommand;
|
|
6409
|
+
exports.ListPolicyGenerationsCommand = ListPolicyGenerationsCommand;
|
|
4443
6410
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4444
6411
|
exports.ListWorkloadIdentitiesCommand = ListWorkloadIdentitiesCommand;
|
|
4445
6412
|
exports.MemoryStatus = MemoryStatus;
|
|
4446
6413
|
exports.MemoryStrategyStatus = MemoryStrategyStatus;
|
|
4447
6414
|
exports.MemoryStrategyType = MemoryStrategyType;
|
|
4448
6415
|
exports.NetworkMode = NetworkMode;
|
|
6416
|
+
exports.OAuthGrantType = OAuthGrantType;
|
|
6417
|
+
exports.OnlineEvaluationConfigStatus = OnlineEvaluationConfigStatus;
|
|
6418
|
+
exports.OnlineEvaluationExecutionStatus = OnlineEvaluationExecutionStatus;
|
|
4449
6419
|
exports.OverrideType = OverrideType;
|
|
6420
|
+
exports.PolicyEngineStatus = PolicyEngineStatus;
|
|
6421
|
+
exports.PolicyGenerationStatus = PolicyGenerationStatus;
|
|
6422
|
+
exports.PolicyStatus = PolicyStatus;
|
|
6423
|
+
exports.PolicyValidationMode = PolicyValidationMode;
|
|
6424
|
+
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
4450
6425
|
exports.ResourceLimitExceededException = ResourceLimitExceededException$1;
|
|
4451
6426
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
4452
6427
|
exports.ResourceType = ResourceType;
|
|
6428
|
+
exports.RestApiMethod = RestApiMethod;
|
|
4453
6429
|
exports.SchemaType = SchemaType;
|
|
4454
6430
|
exports.SearchType = SearchType;
|
|
4455
6431
|
exports.ServerProtocol = ServerProtocol;
|
|
4456
6432
|
exports.ServiceException = ServiceException$1;
|
|
4457
6433
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
4458
6434
|
exports.SetTokenVaultCMKCommand = SetTokenVaultCMKCommand;
|
|
6435
|
+
exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;
|
|
4459
6436
|
exports.SynchronizeGatewayTargetsCommand = SynchronizeGatewayTargetsCommand;
|
|
4460
6437
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4461
6438
|
exports.TargetStatus = TargetStatus;
|
|
@@ -4466,10 +6443,14 @@ exports.UntagResourceCommand = UntagResourceCommand;
|
|
|
4466
6443
|
exports.UpdateAgentRuntimeCommand = UpdateAgentRuntimeCommand;
|
|
4467
6444
|
exports.UpdateAgentRuntimeEndpointCommand = UpdateAgentRuntimeEndpointCommand;
|
|
4468
6445
|
exports.UpdateApiKeyCredentialProviderCommand = UpdateApiKeyCredentialProviderCommand;
|
|
6446
|
+
exports.UpdateEvaluatorCommand = UpdateEvaluatorCommand;
|
|
4469
6447
|
exports.UpdateGatewayCommand = UpdateGatewayCommand;
|
|
4470
6448
|
exports.UpdateGatewayTargetCommand = UpdateGatewayTargetCommand;
|
|
4471
6449
|
exports.UpdateMemoryCommand = UpdateMemoryCommand;
|
|
4472
6450
|
exports.UpdateOauth2CredentialProviderCommand = UpdateOauth2CredentialProviderCommand;
|
|
6451
|
+
exports.UpdateOnlineEvaluationConfigCommand = UpdateOnlineEvaluationConfigCommand;
|
|
6452
|
+
exports.UpdatePolicyCommand = UpdatePolicyCommand;
|
|
6453
|
+
exports.UpdatePolicyEngineCommand = UpdatePolicyEngineCommand;
|
|
4473
6454
|
exports.UpdateWorkloadIdentityCommand = UpdateWorkloadIdentityCommand;
|
|
4474
6455
|
exports.ValidationException = ValidationException$1;
|
|
4475
6456
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
@@ -4479,10 +6460,26 @@ exports.paginateListAgentRuntimes = paginateListAgentRuntimes;
|
|
|
4479
6460
|
exports.paginateListApiKeyCredentialProviders = paginateListApiKeyCredentialProviders;
|
|
4480
6461
|
exports.paginateListBrowsers = paginateListBrowsers;
|
|
4481
6462
|
exports.paginateListCodeInterpreters = paginateListCodeInterpreters;
|
|
6463
|
+
exports.paginateListEvaluators = paginateListEvaluators;
|
|
4482
6464
|
exports.paginateListGatewayTargets = paginateListGatewayTargets;
|
|
4483
6465
|
exports.paginateListGateways = paginateListGateways;
|
|
4484
6466
|
exports.paginateListMemories = paginateListMemories;
|
|
4485
6467
|
exports.paginateListOauth2CredentialProviders = paginateListOauth2CredentialProviders;
|
|
6468
|
+
exports.paginateListOnlineEvaluationConfigs = paginateListOnlineEvaluationConfigs;
|
|
6469
|
+
exports.paginateListPolicies = paginateListPolicies;
|
|
6470
|
+
exports.paginateListPolicyEngines = paginateListPolicyEngines;
|
|
6471
|
+
exports.paginateListPolicyGenerationAssets = paginateListPolicyGenerationAssets;
|
|
6472
|
+
exports.paginateListPolicyGenerations = paginateListPolicyGenerations;
|
|
4486
6473
|
exports.paginateListWorkloadIdentities = paginateListWorkloadIdentities;
|
|
4487
6474
|
exports.waitForMemoryCreated = waitForMemoryCreated;
|
|
6475
|
+
exports.waitForPolicyActive = waitForPolicyActive;
|
|
6476
|
+
exports.waitForPolicyDeleted = waitForPolicyDeleted;
|
|
6477
|
+
exports.waitForPolicyEngineActive = waitForPolicyEngineActive;
|
|
6478
|
+
exports.waitForPolicyEngineDeleted = waitForPolicyEngineDeleted;
|
|
6479
|
+
exports.waitForPolicyGenerationCompleted = waitForPolicyGenerationCompleted;
|
|
4488
6480
|
exports.waitUntilMemoryCreated = waitUntilMemoryCreated;
|
|
6481
|
+
exports.waitUntilPolicyActive = waitUntilPolicyActive;
|
|
6482
|
+
exports.waitUntilPolicyDeleted = waitUntilPolicyDeleted;
|
|
6483
|
+
exports.waitUntilPolicyEngineActive = waitUntilPolicyEngineActive;
|
|
6484
|
+
exports.waitUntilPolicyEngineDeleted = waitUntilPolicyEngineDeleted;
|
|
6485
|
+
exports.waitUntilPolicyGenerationCompleted = waitUntilPolicyGenerationCompleted;
|