@aws-sdk/client-bedrock-agentcore-control 3.1070.0 → 3.1071.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.
Files changed (113) hide show
  1. package/README.md +42 -0
  2. package/dist-cjs/index.js +143 -1
  3. package/dist-cjs/schemas/schemas_0.js +475 -94
  4. package/dist-es/BedrockAgentCoreControl.js +16 -0
  5. package/dist-es/commands/CreateHarnessEndpointCommand.js +16 -0
  6. package/dist-es/commands/DeleteHarnessEndpointCommand.js +16 -0
  7. package/dist-es/commands/GetHarnessEndpointCommand.js +16 -0
  8. package/dist-es/commands/ListHarnessEndpointsCommand.js +16 -0
  9. package/dist-es/commands/ListHarnessVersionsCommand.js +16 -0
  10. package/dist-es/commands/UpdateHarnessEndpointCommand.js +16 -0
  11. package/dist-es/commands/index.js +6 -0
  12. package/dist-es/models/enums.js +43 -0
  13. package/dist-es/pagination/ListHarnessEndpointsPaginator.js +4 -0
  14. package/dist-es/pagination/ListHarnessVersionsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +2 -0
  16. package/dist-es/schemas/schemas_0.js +435 -94
  17. package/dist-types/BedrockAgentCoreControl.d.ts +56 -0
  18. package/dist-types/BedrockAgentCoreControlClient.d.ts +8 -2
  19. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +10 -0
  20. package/dist-types/commands/CreateGatewayCommand.d.ts +43 -0
  21. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +139 -1
  22. package/dist-types/commands/CreateHarnessCommand.d.ts +51 -2
  23. package/dist-types/commands/CreateHarnessEndpointCommand.d.ts +116 -0
  24. package/dist-types/commands/CreateMemoryCommand.d.ts +1 -0
  25. package/dist-types/commands/CreatePaymentManagerCommand.d.ts +20 -0
  26. package/dist-types/commands/CreatePolicyCommand.d.ts +8 -0
  27. package/dist-types/commands/CreateRegistryCommand.d.ts +11 -1
  28. package/dist-types/commands/DeleteHarnessCommand.d.ts +27 -1
  29. package/dist-types/commands/DeleteHarnessEndpointCommand.d.ts +108 -0
  30. package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
  31. package/dist-types/commands/DeleteRegistryCommand.d.ts +1 -1
  32. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +10 -0
  33. package/dist-types/commands/GetGatewayCommand.d.ts +26 -0
  34. package/dist-types/commands/GetGatewayTargetCommand.d.ts +69 -0
  35. package/dist-types/commands/GetHarnessCommand.d.ts +28 -2
  36. package/dist-types/commands/GetHarnessEndpointCommand.d.ts +104 -0
  37. package/dist-types/commands/GetMemoryCommand.d.ts +1 -0
  38. package/dist-types/commands/GetPaymentManagerCommand.d.ts +10 -0
  39. package/dist-types/commands/GetPolicyCommand.d.ts +4 -0
  40. package/dist-types/commands/GetPolicySummaryCommand.d.ts +1 -0
  41. package/dist-types/commands/GetRegistryCommand.d.ts +11 -1
  42. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +12 -0
  43. package/dist-types/commands/ListHarnessEndpointsCommand.d.ts +108 -0
  44. package/dist-types/commands/ListHarnessVersionsCommand.d.ts +105 -0
  45. package/dist-types/commands/ListHarnessesCommand.d.ts +3 -2
  46. package/dist-types/commands/ListMemoriesCommand.d.ts +1 -0
  47. package/dist-types/commands/ListPoliciesCommand.d.ts +4 -0
  48. package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +3 -0
  49. package/dist-types/commands/ListPolicySummariesCommand.d.ts +1 -0
  50. package/dist-types/commands/ListRegistriesCommand.d.ts +1 -1
  51. package/dist-types/commands/ListRegistryRecordsCommand.d.ts +2 -1
  52. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  53. package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
  54. package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +1 -1
  55. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +69 -0
  56. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  57. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  58. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +10 -0
  59. package/dist-types/commands/UpdateGatewayCommand.d.ts +51 -0
  60. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +139 -1
  61. package/dist-types/commands/UpdateHarnessCommand.d.ts +51 -2
  62. package/dist-types/commands/UpdateHarnessEndpointCommand.d.ts +113 -0
  63. package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -0
  64. package/dist-types/commands/UpdatePaymentManagerCommand.d.ts +10 -0
  65. package/dist-types/commands/UpdatePolicyCommand.d.ts +8 -0
  66. package/dist-types/commands/UpdateRegistryCommand.d.ts +21 -1
  67. package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +1 -1
  68. package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +1 -1
  69. package/dist-types/commands/index.d.ts +6 -0
  70. package/dist-types/models/enums.d.ts +99 -0
  71. package/dist-types/models/models_0.d.ts +904 -1144
  72. package/dist-types/models/models_1.d.ts +4595 -4209
  73. package/dist-types/models/models_2.d.ts +883 -6
  74. package/dist-types/pagination/ListHarnessEndpointsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListHarnessVersionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/index.d.ts +2 -0
  77. package/dist-types/schemas/schemas_0.d.ts +46 -0
  78. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +116 -0
  79. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +36 -0
  80. package/dist-types/ts3.4/commands/CreateHarnessCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/CreateHarnessEndpointCommand.d.ts +53 -0
  82. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/DeleteHarnessCommand.d.ts +1 -1
  84. package/dist-types/ts3.4/commands/DeleteHarnessEndpointCommand.d.ts +53 -0
  85. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +1 -1
  86. package/dist-types/ts3.4/commands/GetHarnessCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/GetHarnessEndpointCommand.d.ts +53 -0
  88. package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/ListHarnessEndpointsCommand.d.ts +53 -0
  90. package/dist-types/ts3.4/commands/ListHarnessVersionsCommand.d.ts +53 -0
  91. package/dist-types/ts3.4/commands/ListHarnessesCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +2 -4
  94. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
  96. package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  99. package/dist-types/ts3.4/commands/UpdateHarnessCommand.d.ts +1 -1
  100. package/dist-types/ts3.4/commands/UpdateHarnessEndpointCommand.d.ts +53 -0
  101. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
  102. package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +1 -1
  103. package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +1 -1
  104. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  105. package/dist-types/ts3.4/models/enums.d.ts +56 -0
  106. package/dist-types/ts3.4/models/models_0.d.ts +269 -402
  107. package/dist-types/ts3.4/models/models_1.d.ts +447 -211
  108. package/dist-types/ts3.4/models/models_2.d.ts +262 -3
  109. package/dist-types/ts3.4/pagination/ListHarnessEndpointsPaginator.d.ts +11 -0
  110. package/dist-types/ts3.4/pagination/ListHarnessVersionsPaginator.d.ts +11 -0
  111. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  112. package/dist-types/ts3.4/schemas/schemas_0.d.ts +46 -0
  113. package/package.json +3 -3
@@ -26,6 +26,7 @@ const _AREg = "AgentRuntimeEndpoints";
26
26
  const _ARg = "AgentRuntimes";
27
27
  const _ASC = "ApiSchemaConfiguration";
28
28
  const _ASD = "AgentSkillsDescriptor";
29
+ const _AWC = "AllowedWorkloadConfiguration";
29
30
  const _Ac = "Action";
30
31
  const _BEMC = "BedrockEvaluatorModelConfig";
31
32
  const _BEP = "BrowserEnterprisePolicy";
@@ -79,9 +80,11 @@ const _CCVT = "CustomClaimValidationType";
79
80
  const _CCVTu = "CustomClaimValidationsType";
80
81
  const _CCo = "CodeConfiguration";
81
82
  const _CCom = "ComponentConfiguration";
82
- const _CCon = "ContainerConfiguration";
83
+ const _CCon = "ConnectorConfiguration";
84
+ const _CConn = "ConnectorConfigurations";
83
85
  const _CCons = "ConsolidationConfiguration";
84
- const _CCont = "ContentConfiguration";
86
+ const _CCont = "ContainerConfiguration";
87
+ const _CConte = "ContentConfiguration";
85
88
  const _CD = "CustomDescriptor";
86
89
  const _CDR = "CreateDatasetRequest";
87
90
  const _CDRr = "CreateDatasetResponse";
@@ -105,6 +108,9 @@ const _CGT = "CreateGatewayTarget";
105
108
  const _CGTR = "CreateGatewayTargetRequest";
106
109
  const _CGTRr = "CreateGatewayTargetResponse";
107
110
  const _CH = "CreateHarness";
111
+ const _CHE = "CreateHarnessEndpoint";
112
+ const _CHER = "CreateHarnessEndpointRequest";
113
+ const _CHERr = "CreateHarnessEndpointResponse";
108
114
  const _CHR = "CreateHarnessRequest";
109
115
  const _CHRr = "CreateHarnessResponse";
110
116
  const _CINC = "CodeInterpreterNetworkConfiguration";
@@ -143,6 +149,8 @@ const _CPERr = "CreatePolicyEngineResponse";
143
149
  const _CPM = "CreatePaymentManager";
144
150
  const _CPMR = "CreatePaymentManagerRequest";
145
151
  const _CPMRr = "CreatePaymentManagerResponse";
152
+ const _CPO = "ConnectorParameterOverride";
153
+ const _CPOo = "ConnectorParameterOverrides";
146
154
  const _CPR = "CreatePolicyRequest";
147
155
  const _CPRr = "CreatePolicyResponse";
148
156
  const _CPr = "CredentialProvider";
@@ -155,8 +163,11 @@ const _CRRR = "CreateRegistryRecordRequest";
155
163
  const _CRRRr = "CreateRegistryRecordResponse";
156
164
  const _CRRr = "CreateRegistryResponse";
157
165
  const _CRRre = "CreateRegistryRecord";
166
+ const _CS = "ConnectorSource";
158
167
  const _CSD = "CategoricalScaleDefinition";
159
168
  const _CSDa = "CategoricalScaleDefinitions";
169
+ const _CTC = "ConnectorTargetConfiguration";
170
+ const _CTCu = "CustomTransformConfiguration";
160
171
  const _CWI = "CreateWorkloadIdentity";
161
172
  const _CWIR = "CreateWorkloadIdentityRequest";
162
173
  const _CWIRr = "CreateWorkloadIdentityResponse";
@@ -214,6 +225,9 @@ const _DGT = "DeleteGatewayTarget";
214
225
  const _DGTR = "DeleteGatewayTargetRequest";
215
226
  const _DGTRe = "DeleteGatewayTargetResponse";
216
227
  const _DH = "DeleteHarness";
228
+ const _DHE = "DeleteHarnessEndpoint";
229
+ const _DHER = "DeleteHarnessEndpointRequest";
230
+ const _DHERe = "DeleteHarnessEndpointResponse";
217
231
  const _DHR = "DeleteHarnessRequest";
218
232
  const _DHRe = "DeleteHarnessResponse";
219
233
  const _DM = "DeleteMemory";
@@ -340,6 +354,9 @@ const _GGT = "GetGatewayTarget";
340
354
  const _GGTR = "GetGatewayTargetRequest";
341
355
  const _GGTRe = "GetGatewayTargetResponse";
342
356
  const _GH = "GetHarness";
357
+ const _GHE = "GetHarnessEndpoint";
358
+ const _GHER = "GetHarnessEndpointRequest";
359
+ const _GHERe = "GetHarnessEndpointResponse";
343
360
  const _GHR = "GetHarnessRequest";
344
361
  const _GHRe = "GetHarnessResponse";
345
362
  const _GIC = "GatewayInterceptorConfiguration";
@@ -347,7 +364,6 @@ const _GICa = "GatewayInterceptorConfigurations";
347
364
  const _GM = "GetMemory";
348
365
  const _GMI = "GetMemoryInput";
349
366
  const _GMO = "GetMemoryOutput";
350
- const _GN = "GatewayName";
351
367
  const _GOCP = "GetOauth2CredentialProvider";
352
368
  const _GOCPR = "GetOauth2CredentialProviderRequest";
353
369
  const _GOCPRe = "GetOauth2CredentialProviderResponse";
@@ -417,10 +433,16 @@ const _HACMRC = "HarnessAgentCoreMemoryRetrievalConfig";
417
433
  const _HACMRCa = "HarnessAgentCoreMemoryRetrievalConfigs";
418
434
  const _HACRE = "HarnessAgentCoreRuntimeEnvironment";
419
435
  const _HACRER = "HarnessAgentCoreRuntimeEnvironmentRequest";
436
+ const _HASC = "HttpApiSchemaConfiguration";
420
437
  const _HBMC = "HarnessBedrockModelConfig";
438
+ const _HDMC = "HarnessDisabledMemoryConfiguration";
439
+ const _HE = "HarnessEndpoint";
421
440
  const _HEA = "HarnessEnvironmentArtifact";
441
+ const _HELT = "HostingEnvironmentListType";
422
442
  const _HEP = "HarnessEnvironmentProvider";
423
443
  const _HEPR = "HarnessEnvironmentProviderRequest";
444
+ const _HEa = "HarnessEndpoints";
445
+ const _HEo = "HostingEnvironment";
424
446
  const _HGMC = "HarnessGeminiModelConfig";
425
447
  const _HGOA = "HarnessGatewayOutboundAuth";
426
448
  const _HHM = "HttpHeadersMap";
@@ -430,10 +452,12 @@ const _HLLAB = "HarnessLiteLlmApiBase";
430
452
  const _HLLMC = "HarnessLiteLlmModelConfig";
431
453
  const _HMC = "HarnessMemoryConfiguration";
432
454
  const _HMCa = "HarnessModelConfiguration";
455
+ const _HMMC = "HarnessManagedMemoryConfiguration";
433
456
  const _HOAMC = "HarnessOpenAiModelConfig";
434
457
  const _HRMC = "HarnessRemoteMcpConfig";
435
458
  const _HRMU = "HarnessRemoteMcpUrl";
436
459
  const _HS = "HarnessSummary";
460
+ const _HSASS = "HarnessSkillAwsSkillsSource";
437
461
  const _HSC = "HarnessSummarizationConfiguration";
438
462
  const _HSCB = "HarnessSystemContentBlock";
439
463
  const _HSGA = "HarnessSkillGitAuth";
@@ -450,10 +474,14 @@ const _HTCa = "HarnessToolConfiguration";
450
474
  const _HTCt = "HttpTargetConfiguration";
451
475
  const _HTSC = "HarnessTruncationStrategyConfiguration";
452
476
  const _HTa = "HarnessTools";
477
+ const _HVS = "HarnessVersionSummary";
478
+ const _HVSa = "HarnessVersionSummaries";
453
479
  const _I = "Insight";
454
480
  const _IC = "InferenceConfiguration";
455
481
  const _ICI = "InvocationConfigurationInput";
456
482
  const _ICP = "IamCredentialProvider";
483
+ const _ICS = "InferenceConnectorSource";
484
+ const _ICTC = "InferenceConnectorTargetConfiguration";
457
485
  const _ICn = "InvocationConfiguration";
458
486
  const _ICnt = "InterceptorConfiguration";
459
487
  const _IES = "InlineExamplesSource";
@@ -461,11 +489,18 @@ const _IIC = "InterceptorInputConfiguration";
461
489
  const _IK = "IndexedKey";
462
490
  const _IKL = "IndexedKeysList";
463
491
  const _IL = "InsightList";
492
+ const _IOC = "InferenceOperationConfiguration";
493
+ const _IOCn = "InferenceOperationConfigurations";
464
494
  const _IOPCI = "IncludedOauth2ProviderConfigInput";
465
495
  const _IOPCO = "IncludedOauth2ProviderConfigOutput";
466
496
  const _IP = "InlinePayload";
497
+ const _IPES = "InterceptorPayloadExclusionSelector";
498
+ const _IPESL = "InterceptorPayloadExclusionSelectorList";
499
+ const _IPF = "InterceptorPayloadFilter";
500
+ const _IPTC = "InferenceProviderTargetConfiguration";
467
501
  const _IPa = "IamPrincipal";
468
502
  const _ISE = "InternalServerException";
503
+ const _ITC = "InferenceTargetConfiguration";
469
504
  const _KC = "KmsConfiguration";
470
505
  const _KR = "KinesisResource";
471
506
  const _LAAJEC = "LlmAsAJudgeEvaluatorConfig";
@@ -522,8 +557,14 @@ const _LGT = "ListGatewayTargets";
522
557
  const _LGTR = "ListGatewayTargetsRequest";
523
558
  const _LGTRi = "ListGatewayTargetsResponse";
524
559
  const _LH = "ListHarnesses";
560
+ const _LHE = "ListHarnessEndpoints";
561
+ const _LHER = "ListHarnessEndpointsRequest";
562
+ const _LHERi = "ListHarnessEndpointsResponse";
525
563
  const _LHR = "ListHarnessesRequest";
526
564
  const _LHRi = "ListHarnessesResponse";
565
+ const _LHV = "ListHarnessVersions";
566
+ const _LHVR = "ListHarnessVersionsRequest";
567
+ const _LHVRi = "ListHarnessVersionsResponse";
527
568
  const _LIC = "LambdaInterceptorConfiguration";
528
569
  const _LM = "ListMemories";
529
570
  const _LMI = "ListMemoriesInput";
@@ -572,6 +613,7 @@ const _LRRR = "ListRegistryRecordsRequest";
572
613
  const _LRRRi = "ListRegistryRecordsResponse";
573
614
  const _LRRi = "ListRegistriesResponse";
574
615
  const _LRRis = "ListRegistryRecords";
616
+ const _LTC = "LambdaTransformConfiguration";
575
617
  const _LTFR = "ListTagsForResource";
576
618
  const _LTFRR = "ListTagsForResourceRequest";
577
619
  const _LTFRRi = "ListTagsForResourceResponse";
@@ -585,9 +627,13 @@ const _MC = "MetadataConfiguration";
585
627
  const _MCC = "ModifyConsolidationConfiguration";
586
628
  const _MCPGC = "MCPGatewayConfiguration";
587
629
  const _MD = "McpDescriptor";
630
+ const _ME = "ModelEntry";
588
631
  const _MEC = "ModifyExtractionConfiguration";
632
+ const _MEo = "ModelEntries";
633
+ const _MI = "McpInstructions";
589
634
  const _MICI = "ModifyInvocationConfigurationInput";
590
635
  const _MLTC = "McpLambdaTargetConfiguration";
636
+ const _MM = "ModelMapping";
591
637
  const _MMS = "ModifyMemoryStrategies";
592
638
  const _MMSI = "ModifyMemoryStrategyInput";
593
639
  const _MMSL = "ModifyMemoryStrategiesList";
@@ -657,13 +703,16 @@ const _PGSL = "PolicyGenerationSummaryList";
657
703
  const _PGo = "PolicyGenerations";
658
704
  const _PMS = "PaymentManagerSummary";
659
705
  const _PMSa = "PaymentManagerSummaries";
706
+ const _PP = "ProviderPrefix";
660
707
  const _PPCI = "PaymentProviderConfigurationInput";
661
708
  const _PPCO = "PaymentProviderConfigurationOutput";
662
709
  const _PRP = "PutResourcePolicy";
663
710
  const _PRPR = "PutResourcePolicyRequest";
664
711
  const _PRPRu = "PutResourcePolicyResponse";
665
- const _PS = "PolicySummary";
712
+ const _PS = "PolicyStatement";
666
713
  const _PSL = "PolicySummaryList";
714
+ const _PSo = "PolicySummary";
715
+ const _PTC = "PassthroughTargetConfiguration";
667
716
  const _Po = "Policy";
668
717
  const _Pol = "Policies";
669
718
  const _R = "Rule";
@@ -694,8 +743,9 @@ const _SCOu = "SummaryConsolidationOverride";
694
743
  const _SCa = "SamplingConfig";
695
744
  const _SCe = "SessionConfig";
696
745
  const _SCes = "SessionConfiguration";
697
- const _SCt = "StrategyConfiguration";
698
- const _SCtr = "StreamingConfiguration";
746
+ const _SCt = "StickinessConfiguration";
747
+ const _SCtr = "StrategyConfiguration";
748
+ const _SCtre = "StreamingConfiguration";
699
749
  const _SCy = "SynchronizationConfiguration";
700
750
  const _SD = "SchemaDefinition";
701
751
  const _SDR = "StreamDeliveryResources";
@@ -817,7 +867,10 @@ const _UGT = "UpdateGatewayTarget";
817
867
  const _UGTR = "UpdateGatewayTargetRequest";
818
868
  const _UGTRp = "UpdateGatewayTargetResponse";
819
869
  const _UH = "UpdateHarness";
870
+ const _UHE = "UpdateHarnessEndpoint";
820
871
  const _UHEA = "UpdatedHarnessEnvironmentArtifact";
872
+ const _UHER = "UpdateHarnessEndpointRequest";
873
+ const _UHERp = "UpdateHarnessEndpointResponse";
821
874
  const _UHMC = "UpdatedHarnessMemoryConfiguration";
822
875
  const _UHR = "UpdateHarnessRequest";
823
876
  const _UHRp = "UpdateHarnessResponse";
@@ -882,6 +935,7 @@ const _VEF = "ValidationExceptionField";
882
935
  const _VEFL = "ValidationExceptionFieldList";
883
936
  const _VF = "VersionFilter";
884
937
  const _VLM = "VersionLineageMetadata";
938
+ const _WC = "WafConfiguration";
885
939
  const _WID = "WorkloadIdentityDetails";
886
940
  const _WIL = "WorkloadIdentityList";
887
941
  const _WIT = "WorkloadIdentityType";
@@ -952,6 +1006,7 @@ const _aSM = "authorizationServerMetadata";
952
1006
  const _aSS = "appSecretSource";
953
1007
  const _aSg = "agentSkills";
954
1008
  const _aSp = "appSecret";
1009
+ const _aSw = "awsSkills";
955
1010
  const _aT = "authorizerType";
956
1011
  const _aTC = "actorTokenContent";
957
1012
  const _aTP = "appendToPrompt";
@@ -959,6 +1014,7 @@ const _aTS = "actorTokenScopes";
959
1014
  const _aTl = "allowedTools";
960
1015
  const _aU = "authorizationUrl";
961
1016
  const _aV = "allowedValues";
1017
+ const _aWC = "allowedWorkloadConfiguration";
962
1018
  const _aa = "a2a";
963
1019
  const _ar = "arn";
964
1020
  const _au = "auth";
@@ -998,6 +1054,7 @@ const _cI = "clientId";
998
1054
  const _cIA = "codeInterpreterArn";
999
1055
  const _cII = "codeInterpreterId";
1000
1056
  const _cIS = "codeInterpreterSummaries";
1057
+ const _cIo = "connectorId";
1001
1058
  const _cJWTA = "customJWTAuthorizer";
1002
1059
  const _cL = "credentialLocation";
1003
1060
  const _cM = "commitMessage";
@@ -1021,6 +1078,7 @@ const _cSC = "clientSecretConfig";
1021
1078
  const _cSJK = "clientSecretJsonKey";
1022
1079
  const _cSS = "clientSecretSource";
1023
1080
  const _cT = "clientToken";
1081
+ const _cTC = "customTransformConfiguration";
1024
1082
  const _cTr = "createdTime";
1025
1083
  const _cU = "containerUri";
1026
1084
  const _cUa = "callbackUrl";
@@ -1033,7 +1091,9 @@ const _co = "code";
1033
1091
  const _com = "components";
1034
1092
  const _con = "configuration";
1035
1093
  const _cond = "conditions";
1036
- const _conf = "config";
1094
+ const _conf = "configurations";
1095
+ const _confi = "config";
1096
+ const _conn = "connector";
1037
1097
  const _cons = "consolidation";
1038
1098
  const _cont = "content";
1039
1099
  const _cu = "custom";
@@ -1041,6 +1101,7 @@ const _d = "description";
1041
1101
  const _dA = "datasetArn";
1042
1102
  const _dC = "deletedCount";
1043
1103
  const _dI = "datasetId";
1104
+ const _dMM = "deleteManagedMemory";
1044
1105
  const _dMS = "deleteMemoryStrategies";
1045
1106
  const _dN = "datasetName";
1046
1107
  const _dRU = "defaultReturnUrl";
@@ -1056,6 +1117,7 @@ const _dVo = "doubleValue";
1056
1117
  const _da = "datasets";
1057
1118
  const _de = "definition";
1058
1119
  const _des = "descriptors";
1120
+ const _di = "disabled";
1059
1121
  const _do = "domain";
1060
1122
  const _e = "error";
1061
1123
  const _eA = "evaluatorArn";
@@ -1073,6 +1135,7 @@ const _eIAT = "endpointIpAddressType";
1073
1135
  const _eIv = "evaluatorId";
1074
1136
  const _eKA = "encryptionKeyArn";
1075
1137
  const _eL = "exceptionLevel";
1138
+ const _eM = "enforcementMode";
1076
1139
  const _eMS = "episodicMemoryStrategy";
1077
1140
  const _eN = "endpointName";
1078
1141
  const _eNv = "evaluatorName";
@@ -1090,17 +1153,21 @@ const _eTx = "extractionType";
1090
1153
  const _eV = "environmentVariables";
1091
1154
  const _en = "enabled";
1092
1155
  const _end = "endpoint";
1156
+ const _endp = "endpoints";
1093
1157
  const _env = "environment";
1094
1158
  const _ev = "evaluators";
1095
1159
  const _ex = "extraction";
1096
1160
  const _exa = "examples";
1161
+ const _exc = "exclude";
1097
1162
  const _f = "frequencies";
1098
1163
  const _fC = "filesystemConfigurations";
1099
1164
  const _fL = "fieldList";
1165
+ const _fM = "failureMode";
1100
1166
  const _fP = "filterPath";
1101
1167
  const _fR = "failureReason";
1102
1168
  const _fU = "fromUrl";
1103
1169
  const _fi = "findings";
1170
+ const _fie = "field";
1104
1171
  const _fil = "filter";
1105
1172
  const _filt = "filters";
1106
1173
  const _g = "git";
@@ -1116,9 +1183,12 @@ const _gU = "gatewayUrl";
1116
1183
  const _h = "harness";
1117
1184
  const _hCWS = "historicalContextWindowSize";
1118
1185
  const _hE = "httpError";
1186
+ const _hEo = "hostingEnvironments";
1119
1187
  const _hI = "harnessId";
1120
1188
  const _hN = "harnessName";
1121
1189
  const _hQ = "httpQuery";
1190
+ const _hV = "harnessVersion";
1191
+ const _hVa = "harnessVersions";
1122
1192
  const _ha = "harnesses";
1123
1193
  const _he = "headers";
1124
1194
  const _ht = "http";
@@ -1144,7 +1214,9 @@ const _iST = "idleSessionTimeout";
1144
1214
  const _iT = "idempotencyToken";
1145
1215
  const _iTCN = "inboundTokenClaimName";
1146
1216
  const _iTCVT = "inboundTokenClaimValueType";
1217
+ const _id = "identifier";
1147
1218
  const _in = "insights";
1219
+ const _inf = "inference";
1148
1220
  const _ins = "instructions";
1149
1221
  const _int = "interceptor";
1150
1222
  const _is = "issuer";
@@ -1184,6 +1256,7 @@ const _lam = "lambda";
1184
1256
  const _le = "level";
1185
1257
  const _m = "message";
1186
1258
  const _mB = "managedBy";
1259
+ const _mBRA = "managedByResourceArn";
1187
1260
  const _mBT = "messageBasedTrigger";
1188
1261
  const _mC = "metadataConfiguration";
1189
1262
  const _mCe = "messagesCount";
@@ -1195,6 +1268,8 @@ const _mIa = "maxIterations";
1195
1268
  const _mIax = "maxItems";
1196
1269
  const _mIe = "memoryId";
1197
1270
  const _mL = "maxLifetime";
1271
+ const _mM = "modelMapping";
1272
+ const _mMC = "managedMemoryConfiguration";
1198
1273
  const _mMS = "modifyMemoryStrategies";
1199
1274
  const _mOPC = "microsoftOauth2ProviderConfig";
1200
1275
  const _mP = "mountPath";
@@ -1221,6 +1296,7 @@ const _met = "method";
1221
1296
  const _meta = "metadata";
1222
1297
  const _mo = "model";
1223
1298
  const _mod = "mode";
1299
+ const _mode = "models";
1224
1300
  const _n = "name";
1225
1301
  const _nC = "networkConfiguration";
1226
1302
  const _nM = "networkMode";
@@ -1249,6 +1325,7 @@ const _oS = "outputSchema";
1249
1325
  const _oV = "optionalValue";
1250
1326
  const _oa = "oauth2";
1251
1327
  const _oau = "oauth";
1328
+ const _op = "operations";
1252
1329
  const _p = "path";
1253
1330
  const _pA = "profileArn";
1254
1331
  const _pAo = "policyArn";
@@ -1266,6 +1343,7 @@ const _pEI = "policyEngineId";
1266
1343
  const _pEMR = "privateEndpointManagedResources";
1267
1344
  const _pEO = "privateEndpointOverrides";
1268
1345
  const _pEo = "policyEngines";
1346
+ const _pF = "payloadFilter";
1269
1347
  const _pG = "policyGenerations";
1270
1348
  const _pGA = "policyGenerationArn";
1271
1349
  const _pGAI = "policyGenerationAssetId";
@@ -1277,17 +1355,24 @@ const _pIo = "policyId";
1277
1355
  const _pM = "paymentManagers";
1278
1356
  const _pMA = "paymentManagerArn";
1279
1357
  const _pMI = "paymentManagerId";
1358
+ const _pO = "parameterOverrides";
1359
+ const _pP = "providerPath";
1360
+ const _pPr = "providerPrefix";
1280
1361
  const _pRH = "passRequestHeaders";
1281
1362
  const _pRM = "preserveRecentMessages";
1282
1363
  const _pS = "profileSummaries";
1283
1364
  const _pT = "protocolType";
1284
- const _pV = "protocolVersion";
1365
+ const _pV = "parameterValues";
1285
1366
  const _pVI = "parentVersionIds";
1367
+ const _pVr = "protocolVersion";
1368
+ const _pa = "paths";
1369
+ const _pas = "passthrough";
1286
1370
  const _po = "policy";
1287
1371
  const _pol = "policies";
1288
1372
  const _pr = "priority";
1289
1373
  const _pre = "prefix";
1290
1374
  const _pro = "properties";
1375
+ const _prov = "provider";
1291
1376
  const _q = "qualifier";
1292
1377
  const _r = "reason";
1293
1378
  const _rA = "roleArn";
@@ -1337,6 +1422,7 @@ const _sCa = "samplingConfig";
1337
1422
  const _sCe = "sessionConfiguration";
1338
1423
  const _sCes = "sessionConfig";
1339
1424
  const _sCt = "streamingConfiguration";
1425
+ const _sCti = "stickinessConfiguration";
1340
1426
  const _sD = "skillDefinition";
1341
1427
  const _sDR = "streamDeliveryResources";
1342
1428
  const _sEO = "semanticExtractionOverride";
@@ -1387,15 +1473,18 @@ const _sVu = "supportedVersions";
1387
1473
  const _sW = "slidingWindow";
1388
1474
  const _s_ = "s3";
1389
1475
  const _sc = "scopes";
1476
+ const _sch = "schema";
1390
1477
  const _se = "server";
1478
+ const _sep = "separator";
1391
1479
  const _ser = "service";
1392
1480
  const _sk = "skills";
1393
1481
  const _so = "source";
1394
1482
  const _st = "status";
1395
1483
  const _sta = "stage";
1396
1484
  const _stat = "statement";
1397
- const _str = "strategy";
1398
- const _stra = "strategies";
1485
+ const _str = "strategies";
1486
+ const _stra = "strategy";
1487
+ const _stri = "strip";
1399
1488
  const _su = "subnets";
1400
1489
  const _sum = "summarization";
1401
1490
  const _sy = "system";
@@ -1423,12 +1512,14 @@ const _tS = "timeoutSeconds";
1423
1512
  const _tSo = "toolSchema";
1424
1513
  const _tSr = "triggerSynchronization";
1425
1514
  const _tSra = "trafficSplit";
1515
+ const _tT = "targetType";
1426
1516
  const _tV = "targetVersion";
1427
1517
  const _tVI = "tokenVaultId";
1428
1518
  const _ta = "tags";
1429
1519
  const _tar = "targets";
1430
1520
  const _te = "temperature";
1431
1521
  const _tex = "text";
1522
+ const _ti = "timeout";
1432
1523
  const _to = "tools";
1433
1524
  const _tr = "truncation";
1434
1525
  const _u = "url";
@@ -1441,17 +1532,20 @@ const _uPMS = "userPreferenceMemoryStrategy";
1441
1532
  const _uPO = "userPreferenceOverride";
1442
1533
  const _ur = "uri";
1443
1534
  const _us = "username";
1444
- const _v = "value";
1535
+ const _v = "visible";
1445
1536
  const _vC = "vpcConfig";
1446
1537
  const _vCA = "versionCreatedAt";
1447
1538
  const _vI = "versionId";
1448
1539
  const _vIp = "vpcIdentifier";
1449
1540
  const _vM = "validationMode";
1450
- const _va = "validation";
1541
+ const _va = "value";
1542
+ const _val = "validation";
1451
1543
  const _ve = "version";
1452
1544
  const _ver = "versions";
1453
1545
  const _vi = "view";
1454
1546
  const _w = "weight";
1547
+ const _wAA = "webAclArn";
1548
+ const _wC = "wafConfiguration";
1455
1549
  const _wI = "workloadIdentities";
1456
1550
  const _wIA = "workloadIdentityArn";
1457
1551
  const _wID = "workloadIdentityDetails";
@@ -1588,12 +1682,12 @@ var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
1588
1682
  var EvaluatorDescription = [0, n0, _ED, 8, 0];
1589
1683
  var EvaluatorInstructions = [0, n0, _EI, 8, 0];
1590
1684
  var GatewayDescription = [0, n0, _GD, 8, 0];
1591
- var GatewayName = [0, n0, _GN, 8, 0];
1592
1685
  var HarnessInlineFunctionDescription = [0, n0, _HIFD, 8, 0];
1593
1686
  var HarnessLiteLlmApiBase = [0, n0, _HLLAB, 8, 0];
1594
1687
  var HarnessRemoteMcpUrl = [0, n0, _HRMU, 8, 0];
1595
1688
  var InlinePayload = [0, n0, _IP, 8, 0];
1596
1689
  var LlmExtractionInstruction = [0, n0, _LEI, 8, 0];
1690
+ var McpInstructions = [0, n0, _MI, 8, 0];
1597
1691
  var OAuthCustomParametersValue = [0, n0, _OACPV, 8, 0];
1598
1692
  var Prompt = [0, n0, _P, 8, 0];
1599
1693
  var SensitiveJson = [0, n0, _SJ, 8, 15];
@@ -1642,6 +1736,12 @@ const AgentSkillsDescriptor$ = [3, n0, _ASD,
1642
1736
  [() => SkillMdDefinition$, () => SkillDefinition$]
1643
1737
  ];
1644
1738
  exports.AgentSkillsDescriptor$ = AgentSkillsDescriptor$;
1739
+ const AllowedWorkloadConfiguration$ = [3, n0, _AWC,
1740
+ 0,
1741
+ [_hEo, _wI],
1742
+ [() => HostingEnvironmentListType, 64 | 0]
1743
+ ];
1744
+ exports.AllowedWorkloadConfiguration$ = AllowedWorkloadConfiguration$;
1645
1745
  const ApiGatewayTargetConfiguration$ = [3, n0, _AGTC,
1646
1746
  0,
1647
1747
  [_rAI, _sta, _aGTC],
@@ -1828,13 +1928,37 @@ const ConfigurationBundleVersionSummary$ = [3, n0, _CBVS,
1828
1928
  [0, 0, 0, 4, () => VersionLineageMetadata$], 4
1829
1929
  ];
1830
1930
  exports.ConfigurationBundleVersionSummary$ = ConfigurationBundleVersionSummary$;
1831
- const ContainerConfiguration$ = [3, n0, _CCon,
1931
+ const ConnectorConfiguration$ = [3, n0, _CCon,
1932
+ 0,
1933
+ [_n, _d, _pV, _pO],
1934
+ [0, 0, 15, () => ConnectorParameterOverrides], 1
1935
+ ];
1936
+ exports.ConnectorConfiguration$ = ConnectorConfiguration$;
1937
+ const ConnectorParameterOverride$ = [3, n0, _CPO,
1938
+ 0,
1939
+ [_p, _d, _v],
1940
+ [0, 0, 2], 1
1941
+ ];
1942
+ exports.ConnectorParameterOverride$ = ConnectorParameterOverride$;
1943
+ const ConnectorSource$ = [3, n0, _CS,
1944
+ 0,
1945
+ [_cIo],
1946
+ [0], 1
1947
+ ];
1948
+ exports.ConnectorSource$ = ConnectorSource$;
1949
+ const ConnectorTargetConfiguration$ = [3, n0, _CTC,
1950
+ 0,
1951
+ [_so, _en, _conf],
1952
+ [() => ConnectorSource$, 64 | 0, () => ConnectorConfigurations], 1
1953
+ ];
1954
+ exports.ConnectorTargetConfiguration$ = ConnectorTargetConfiguration$;
1955
+ const ContainerConfiguration$ = [3, n0, _CCont,
1832
1956
  0,
1833
1957
  [_cU],
1834
1958
  [0], 1
1835
1959
  ];
1836
1960
  exports.ContainerConfiguration$ = ContainerConfiguration$;
1837
- const ContentConfiguration$ = [3, n0, _CCont,
1961
+ const ContentConfiguration$ = [3, n0, _CConte,
1838
1962
  0,
1839
1963
  [_t, _le],
1840
1964
  [0, 0], 1
@@ -1963,13 +2087,13 @@ exports.CreateEvaluatorResponse$ = CreateEvaluatorResponse$;
1963
2087
  const CreateGatewayRequest$ = [3, n0, _CGR,
1964
2088
  0,
1965
2089
  [_n, _rA, _aT, _d, _cT, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL, _ta],
1966
- [[() => GatewayName, 0], 0, 0, [() => GatewayDescription, 0], [0, 4], 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0, 128 | 0], 3
2090
+ [0, 0, 0, [() => GatewayDescription, 0], [0, 4], 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0, 128 | 0], 3
1967
2091
  ];
1968
2092
  exports.CreateGatewayRequest$ = CreateGatewayRequest$;
1969
2093
  const CreateGatewayResponse$ = [3, n0, _CGRr,
1970
2094
  0,
1971
- [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
1972
- [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 7
2095
+ [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
2096
+ [0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
1973
2097
  ];
1974
2098
  exports.CreateGatewayResponse$ = CreateGatewayResponse$;
1975
2099
  const CreateGatewayRuleRequest$ = [3, n0, _CGRR,
@@ -1986,8 +2110,8 @@ const CreateGatewayRuleResponse$ = [3, n0, _CGRRr,
1986
2110
  exports.CreateGatewayRuleResponse$ = CreateGatewayRuleResponse$;
1987
2111
  const CreateGatewayTargetRequest$ = [3, n0, _CGTR,
1988
2112
  0,
1989
- [_gIa, _n, _tC, _d, _cT, _cPC, _mC, _pE],
1990
- [[0, 1], [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => TargetDescription, 0], [0, 4], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 3
2113
+ [_gIa, _tC, _n, _d, _cT, _cPC, _mC, _pE],
2114
+ [[0, 1], [() => TargetConfiguration$, 0], [() => TargetName, 0], [() => TargetDescription, 0], [0, 4], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 2
1991
2115
  ];
1992
2116
  exports.CreateGatewayTargetRequest$ = CreateGatewayTargetRequest$;
1993
2117
  const CreateGatewayTargetResponse$ = [3, n0, _CGTRr,
@@ -1996,6 +2120,18 @@ const CreateGatewayTargetResponse$ = [3, n0, _CGTRr,
1996
2120
  [0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
1997
2121
  ];
1998
2122
  exports.CreateGatewayTargetResponse$ = CreateGatewayTargetResponse$;
2123
+ const CreateHarnessEndpointRequest$ = [3, n0, _CHER,
2124
+ 0,
2125
+ [_hI, _eN, _tV, _d, _cT, _ta],
2126
+ [[0, 1], 0, 0, 0, [0, 4], 128 | 0], 2
2127
+ ];
2128
+ exports.CreateHarnessEndpointRequest$ = CreateHarnessEndpointRequest$;
2129
+ const CreateHarnessEndpointResponse$ = [3, n0, _CHERr,
2130
+ 0,
2131
+ [_end],
2132
+ [() => HarnessEndpoint$], 1
2133
+ ];
2134
+ exports.CreateHarnessEndpointResponse$ = CreateHarnessEndpointResponse$;
1999
2135
  const CreateHarnessRequest$ = [3, n0, _CHR,
2000
2136
  0,
2001
2137
  [_hN, _eRA, _cT, _env, _eAn, _eV, _aCu, _mo, _sP, _to, _sk, _aTl, _mem, _tr, _mIa, _mT, _tS, _ta],
@@ -2094,14 +2230,14 @@ const CreatePolicyEngineResponse$ = [3, n0, _CPERr,
2094
2230
  exports.CreatePolicyEngineResponse$ = CreatePolicyEngineResponse$;
2095
2231
  const CreatePolicyRequest$ = [3, n0, _CPR,
2096
2232
  0,
2097
- [_n, _de, _pEI, _d, _vM, _cT],
2098
- [0, () => PolicyDefinition$, [0, 1], [() => Description, 0], 0, [0, 4]], 3
2233
+ [_n, _de, _pEI, _d, _vM, _eM, _cT],
2234
+ [0, () => PolicyDefinition$, [0, 1], [() => Description, 0], 0, 0, [0, 4]], 3
2099
2235
  ];
2100
2236
  exports.CreatePolicyRequest$ = CreatePolicyRequest$;
2101
2237
  const CreatePolicyResponse$ = [3, n0, _CPRr,
2102
2238
  0,
2103
- [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _d],
2104
- [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, [() => Description, 0]], 9
2239
+ [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _eM, _d],
2240
+ [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, 0, [() => Description, 0]], 9
2105
2241
  ];
2106
2242
  exports.CreatePolicyResponse$ = CreatePolicyResponse$;
2107
2243
  const CreateRegistryRecordRequest$ = [3, n0, _CRRR,
@@ -2160,8 +2296,8 @@ const CustomDescriptor$ = [3, n0, _CD,
2160
2296
  exports.CustomDescriptor$ = CustomDescriptor$;
2161
2297
  const CustomJWTAuthorizerConfiguration$ = [3, n0, _CJWTAC,
2162
2298
  0,
2163
- [_dU, _aAl, _aCl, _aS, _cCu, _pE, _pEO],
2164
- [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType, () => PrivateEndpoint$, () => PrivateEndpointOverrides], 1
2299
+ [_dU, _aAl, _aCl, _aS, _cCu, _pE, _pEO, _aWC],
2300
+ [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType, () => PrivateEndpoint$, () => PrivateEndpointOverrides, () => AllowedWorkloadConfiguration$], 1
2165
2301
  ];
2166
2302
  exports.CustomJWTAuthorizerConfiguration$ = CustomJWTAuthorizerConfiguration$;
2167
2303
  const CustomMemoryStrategyInput$ = [3, n0, _CMSI,
@@ -2182,6 +2318,12 @@ const CustomOauth2ProviderConfigOutput$ = [3, n0, _COPCO,
2182
2318
  [() => Oauth2Discovery$, 0, () => PrivateEndpoint$, () => PrivateEndpointOverrides, () => OnBehalfOfTokenExchangeConfigType$, 0], 1
2183
2319
  ];
2184
2320
  exports.CustomOauth2ProviderConfigOutput$ = CustomOauth2ProviderConfigOutput$;
2321
+ const CustomTransformConfiguration$ = [3, n0, _CTCu,
2322
+ 0,
2323
+ [_lam],
2324
+ [() => LambdaTransformConfiguration$]
2325
+ ];
2326
+ exports.CustomTransformConfiguration$ = CustomTransformConfiguration$;
2185
2327
  const DatasetSummary$ = [3, n0, _DS,
2186
2328
  0,
2187
2329
  [_dA, _dI, _dN, _st, _sT, _eCx, _cA, _uA, _d, _dS],
@@ -2350,10 +2492,22 @@ const DeleteGatewayTargetResponse$ = [3, n0, _DGTRe,
2350
2492
  [0, 0, 0, 64 | 0], 3
2351
2493
  ];
2352
2494
  exports.DeleteGatewayTargetResponse$ = DeleteGatewayTargetResponse$;
2495
+ const DeleteHarnessEndpointRequest$ = [3, n0, _DHER,
2496
+ 0,
2497
+ [_hI, _eN, _cT],
2498
+ [[0, 1], [0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 2
2499
+ ];
2500
+ exports.DeleteHarnessEndpointRequest$ = DeleteHarnessEndpointRequest$;
2501
+ const DeleteHarnessEndpointResponse$ = [3, n0, _DHERe,
2502
+ 0,
2503
+ [_end],
2504
+ [() => HarnessEndpoint$], 1
2505
+ ];
2506
+ exports.DeleteHarnessEndpointResponse$ = DeleteHarnessEndpointResponse$;
2353
2507
  const DeleteHarnessRequest$ = [3, n0, _DHR,
2354
2508
  0,
2355
- [_hI, _cT],
2356
- [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
2509
+ [_hI, _cT, _dMM],
2510
+ [[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }], [2, { [_hQ]: _dMM }]], 1
2357
2511
  ];
2358
2512
  exports.DeleteHarnessRequest$ = DeleteHarnessRequest$;
2359
2513
  const DeleteHarnessResponse$ = [3, n0, _DHRe,
@@ -2460,8 +2614,8 @@ const DeletePolicyRequest$ = [3, n0, _DPR,
2460
2614
  exports.DeletePolicyRequest$ = DeletePolicyRequest$;
2461
2615
  const DeletePolicyResponse$ = [3, n0, _DPRe,
2462
2616
  0,
2463
- [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _d],
2464
- [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, [() => Description, 0]], 9
2617
+ [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _eM, _d],
2618
+ [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, 0, [() => Description, 0]], 9
2465
2619
  ];
2466
2620
  exports.DeletePolicyResponse$ = DeletePolicyResponse$;
2467
2621
  const DeleteRegistryRecordRequest$ = [3, n0, _DRRR,
@@ -2592,7 +2746,7 @@ const EvaluatorSummary$ = [3, n0, _ES,
2592
2746
  exports.EvaluatorSummary$ = EvaluatorSummary$;
2593
2747
  const Filter$ = [3, n0, _F,
2594
2748
  0,
2595
- [_k, _o, _v],
2749
+ [_k, _o, _va],
2596
2750
  [0, 0, () => FilterValue$], 3
2597
2751
  ];
2598
2752
  exports.Filter$ = Filter$;
@@ -2635,7 +2789,7 @@ exports.GatewayRuleDetail$ = GatewayRuleDetail$;
2635
2789
  const GatewaySummary$ = [3, n0, _GS,
2636
2790
  0,
2637
2791
  [_gI, _n, _st, _cA, _uA, _aT, _d, _pT],
2638
- [0, [() => GatewayName, 0], 0, 5, 5, 0, [() => GatewayDescription, 0], 0], 6
2792
+ [0, 0, 0, 5, 5, 0, [() => GatewayDescription, 0], 0], 6
2639
2793
  ];
2640
2794
  exports.GatewaySummary$ = GatewaySummary$;
2641
2795
  const GatewayTarget$ = [3, n0, _GT,
@@ -2772,8 +2926,8 @@ const GetGatewayRequest$ = [3, n0, _GGR,
2772
2926
  exports.GetGatewayRequest$ = GetGatewayRequest$;
2773
2927
  const GetGatewayResponse$ = [3, n0, _GGRe,
2774
2928
  0,
2775
- [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
2776
- [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 7
2929
+ [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
2930
+ [0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
2777
2931
  ];
2778
2932
  exports.GetGatewayResponse$ = GetGatewayResponse$;
2779
2933
  const GetGatewayRuleRequest$ = [3, n0, _GGRR,
@@ -2800,10 +2954,22 @@ const GetGatewayTargetResponse$ = [3, n0, _GGTRe,
2800
2954
  [0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
2801
2955
  ];
2802
2956
  exports.GetGatewayTargetResponse$ = GetGatewayTargetResponse$;
2957
+ const GetHarnessEndpointRequest$ = [3, n0, _GHER,
2958
+ 0,
2959
+ [_hI, _eN],
2960
+ [[0, 1], [0, 1]], 2
2961
+ ];
2962
+ exports.GetHarnessEndpointRequest$ = GetHarnessEndpointRequest$;
2963
+ const GetHarnessEndpointResponse$ = [3, n0, _GHERe,
2964
+ 0,
2965
+ [_end],
2966
+ [() => HarnessEndpoint$], 1
2967
+ ];
2968
+ exports.GetHarnessEndpointResponse$ = GetHarnessEndpointResponse$;
2803
2969
  const GetHarnessRequest$ = [3, n0, _GHR,
2804
2970
  0,
2805
- [_hI],
2806
- [[0, 1]], 1
2971
+ [_hI, _hV],
2972
+ [[0, 1], [0, { [_hQ]: _hV }]], 1
2807
2973
  ];
2808
2974
  exports.GetHarnessRequest$ = GetHarnessRequest$;
2809
2975
  const GetHarnessResponse$ = [3, n0, _GHRe,
@@ -2940,8 +3106,8 @@ const GetPolicyRequest$ = [3, n0, _GPR,
2940
3106
  exports.GetPolicyRequest$ = GetPolicyRequest$;
2941
3107
  const GetPolicyResponse$ = [3, n0, _GPRe,
2942
3108
  0,
2943
- [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _d],
2944
- [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, [() => Description, 0]], 9
3109
+ [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _eM, _d],
3110
+ [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, 0, [() => Description, 0]], 9
2945
3111
  ];
2946
3112
  exports.GetPolicyResponse$ = GetPolicyResponse$;
2947
3113
  const GetPolicySummaryRequest$ = [3, n0, _GPSR,
@@ -2952,8 +3118,8 @@ const GetPolicySummaryRequest$ = [3, n0, _GPSR,
2952
3118
  exports.GetPolicySummaryRequest$ = GetPolicySummaryRequest$;
2953
3119
  const GetPolicySummaryResponse$ = [3, n0, _GPSRe,
2954
3120
  0,
2955
- [_pIo, _n, _pEI, _cA, _uA, _pAo, _st],
2956
- [0, 0, 0, 5, 5, 0, 0], 7
3121
+ [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _eM],
3122
+ [0, 0, 0, 5, 5, 0, 0, 0], 7
2957
3123
  ];
2958
3124
  exports.GetPolicySummaryResponse$ = GetPolicySummaryResponse$;
2959
3125
  const GetRegistryRecordRequest$ = [3, n0, _GRRR,
@@ -3042,8 +3208,8 @@ const GoogleOauth2ProviderConfigOutput$ = [3, n0, _GOPCOo,
3042
3208
  exports.GoogleOauth2ProviderConfigOutput$ = GoogleOauth2ProviderConfigOutput$;
3043
3209
  const Harness$ = [3, n0, _H,
3044
3210
  0,
3045
- [_hI, _hN, _ar, _st, _eRA, _cA, _uA, _mo, _sP, _to, _sk, _aTl, _tr, _env, _eAn, _eV, _aCu, _mem, _mIa, _mT, _tS, _fR],
3046
- [0, 0, 0, 0, 0, 5, 5, [() => HarnessModelConfiguration$, 0], [() => HarnessSystemPrompt, 0], [() => HarnessTools, 0], () => HarnessSkills, 64 | 0, () => HarnessTruncationConfiguration$, () => HarnessEnvironmentProvider$, () => HarnessEnvironmentArtifact$, [() => EnvironmentVariablesMap, 0], () => AuthorizerConfiguration$, () => HarnessMemoryConfiguration$, 1, 1, 1, 0], 14
3211
+ [_hI, _hN, _ar, _st, _eRA, _cA, _uA, _mo, _sP, _to, _sk, _aTl, _tr, _env, _hV, _eAn, _eV, _aCu, _mem, _mIa, _mT, _tS, _fR],
3212
+ [0, 0, 0, 0, 0, 5, 5, [() => HarnessModelConfiguration$, 0], [() => HarnessSystemPrompt, 0], [() => HarnessTools, 0], () => HarnessSkills, 64 | 0, () => HarnessTruncationConfiguration$, () => HarnessEnvironmentProvider$, 0, () => HarnessEnvironmentArtifact$, [() => EnvironmentVariablesMap, 0], () => AuthorizerConfiguration$, () => HarnessMemoryConfiguration$, 1, 1, 1, 0], 14
3047
3213
  ];
3048
3214
  exports.Harness$ = Harness$;
3049
3215
  const HarnessAgentCoreBrowserConfig$ = [3, n0, _HACBC,
@@ -3094,6 +3260,18 @@ const HarnessBedrockModelConfig$ = [3, n0, _HBMC,
3094
3260
  [0, 1, 1, 1, 0, 15], 1
3095
3261
  ];
3096
3262
  exports.HarnessBedrockModelConfig$ = HarnessBedrockModelConfig$;
3263
+ const HarnessDisabledMemoryConfiguration$ = [3, n0, _HDMC,
3264
+ 0,
3265
+ [],
3266
+ []
3267
+ ];
3268
+ exports.HarnessDisabledMemoryConfiguration$ = HarnessDisabledMemoryConfiguration$;
3269
+ const HarnessEndpoint$ = [3, n0, _HE,
3270
+ 0,
3271
+ [_hI, _hN, _eN, _ar, _st, _cA, _uA, _lV, _tV, _d, _fR],
3272
+ [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], 7
3273
+ ];
3274
+ exports.HarnessEndpoint$ = HarnessEndpoint$;
3097
3275
  const HarnessGeminiModelConfig$ = [3, n0, _HGMC,
3098
3276
  0,
3099
3277
  [_mI, _aKA, _mT, _te, _tP, _tK],
@@ -3112,6 +3290,12 @@ const HarnessLiteLlmModelConfig$ = [3, n0, _HLLMC,
3112
3290
  [0, 0, [() => HarnessLiteLlmApiBase, 0], 1, 1, 1, 15], 1
3113
3291
  ];
3114
3292
  exports.HarnessLiteLlmModelConfig$ = HarnessLiteLlmModelConfig$;
3293
+ const HarnessManagedMemoryConfiguration$ = [3, n0, _HMMC,
3294
+ 0,
3295
+ [_ar, _str, _eED, _eKA],
3296
+ [0, 64 | 0, 1, 0]
3297
+ ];
3298
+ exports.HarnessManagedMemoryConfiguration$ = HarnessManagedMemoryConfiguration$;
3115
3299
  const HarnessOpenAiModelConfig$ = [3, n0, _HOAMC,
3116
3300
  0,
3117
3301
  [_mI, _aKA, _mT, _te, _tP, _aF, _aP],
@@ -3124,6 +3308,12 @@ const HarnessRemoteMcpConfig$ = [3, n0, _HRMC,
3124
3308
  [[() => HarnessRemoteMcpUrl, 0], [() => HttpHeadersMap, 0]], 1
3125
3309
  ];
3126
3310
  exports.HarnessRemoteMcpConfig$ = HarnessRemoteMcpConfig$;
3311
+ const HarnessSkillAwsSkillsSource$ = [3, n0, _HSASS,
3312
+ 0,
3313
+ [_pa],
3314
+ [64 | 0]
3315
+ ];
3316
+ exports.HarnessSkillAwsSkillsSource$ = HarnessSkillAwsSkillsSource$;
3127
3317
  const HarnessSkillGitAuth$ = [3, n0, _HSGA,
3128
3318
  0,
3129
3319
  [_cAr, _us],
@@ -3156,22 +3346,40 @@ const HarnessSummarizationConfiguration$ = [3, n0, _HSC,
3156
3346
  exports.HarnessSummarizationConfiguration$ = HarnessSummarizationConfiguration$;
3157
3347
  const HarnessSummary$ = [3, n0, _HS,
3158
3348
  0,
3159
- [_hI, _hN, _ar, _st, _cA, _uA],
3160
- [0, 0, 0, 0, 5, 5], 6
3349
+ [_hI, _hN, _ar, _st, _cA, _uA, _hV],
3350
+ [0, 0, 0, 0, 5, 5, 0], 6
3161
3351
  ];
3162
3352
  exports.HarnessSummary$ = HarnessSummary$;
3163
3353
  const HarnessTool$ = [3, n0, _HT,
3164
3354
  0,
3165
- [_t, _n, _conf],
3355
+ [_t, _n, _confi],
3166
3356
  [0, 0, [() => HarnessToolConfiguration$, 0]], 1
3167
3357
  ];
3168
3358
  exports.HarnessTool$ = HarnessTool$;
3169
3359
  const HarnessTruncationConfiguration$ = [3, n0, _HTC,
3170
3360
  0,
3171
- [_str, _conf],
3361
+ [_stra, _confi],
3172
3362
  [0, () => HarnessTruncationStrategyConfiguration$], 1
3173
3363
  ];
3174
3364
  exports.HarnessTruncationConfiguration$ = HarnessTruncationConfiguration$;
3365
+ const HarnessVersionSummary$ = [3, n0, _HVS,
3366
+ 0,
3367
+ [_hI, _hN, _ar, _hV, _st, _cA, _uA, _fR],
3368
+ [0, 0, 0, 0, 0, 5, 5, 0], 7
3369
+ ];
3370
+ exports.HarnessVersionSummary$ = HarnessVersionSummary$;
3371
+ const HostingEnvironment$ = [3, n0, _HEo,
3372
+ 0,
3373
+ [_ar],
3374
+ [0], 1
3375
+ ];
3376
+ exports.HostingEnvironment$ = HostingEnvironment$;
3377
+ const HttpApiSchemaConfiguration$ = [3, n0, _HASC,
3378
+ 0,
3379
+ [_so],
3380
+ [[() => ApiSchemaConfiguration$, 0]], 1
3381
+ ];
3382
+ exports.HttpApiSchemaConfiguration$ = HttpApiSchemaConfiguration$;
3175
3383
  const IamCredentialProvider$ = [3, n0, _ICP,
3176
3384
  0,
3177
3385
  [_ser, _reg],
@@ -3208,6 +3416,30 @@ const InferenceConfiguration$ = [3, n0, _IC,
3208
3416
  [1, 1, 1, 64 | 0]
3209
3417
  ];
3210
3418
  exports.InferenceConfiguration$ = InferenceConfiguration$;
3419
+ const InferenceConnectorSource$ = [3, n0, _ICS,
3420
+ 0,
3421
+ [_cIo],
3422
+ [0], 1
3423
+ ];
3424
+ exports.InferenceConnectorSource$ = InferenceConnectorSource$;
3425
+ const InferenceConnectorTargetConfiguration$ = [3, n0, _ICTC,
3426
+ 0,
3427
+ [_so],
3428
+ [() => InferenceConnectorSource$], 1
3429
+ ];
3430
+ exports.InferenceConnectorTargetConfiguration$ = InferenceConnectorTargetConfiguration$;
3431
+ const InferenceOperationConfiguration$ = [3, n0, _IOC,
3432
+ 0,
3433
+ [_p, _pP, _mode],
3434
+ [0, 0, () => ModelEntries], 1
3435
+ ];
3436
+ exports.InferenceOperationConfiguration$ = InferenceOperationConfiguration$;
3437
+ const InferenceProviderTargetConfiguration$ = [3, n0, _IPTC,
3438
+ 0,
3439
+ [_end, _mM, _op],
3440
+ [0, () => ModelMapping$, () => InferenceOperationConfigurations], 1
3441
+ ];
3442
+ exports.InferenceProviderTargetConfiguration$ = InferenceProviderTargetConfiguration$;
3211
3443
  const InlineExamplesSource$ = [3, n0, _IES,
3212
3444
  0,
3213
3445
  [_exa],
@@ -3222,10 +3454,16 @@ const Insight$ = [3, n0, _I,
3222
3454
  exports.Insight$ = Insight$;
3223
3455
  const InterceptorInputConfiguration$ = [3, n0, _IIC,
3224
3456
  0,
3225
- [_pRH],
3226
- [2], 1
3457
+ [_pRH, _pF],
3458
+ [2, () => InterceptorPayloadFilter$], 1
3227
3459
  ];
3228
3460
  exports.InterceptorInputConfiguration$ = InterceptorInputConfiguration$;
3461
+ const InterceptorPayloadFilter$ = [3, n0, _IPF,
3462
+ 0,
3463
+ [_exc],
3464
+ [() => InterceptorPayloadExclusionSelectorList], 1
3465
+ ];
3466
+ exports.InterceptorPayloadFilter$ = InterceptorPayloadFilter$;
3229
3467
  const InvocationConfiguration$ = [3, n0, _ICn,
3230
3468
  0,
3231
3469
  [_tA, _pDBN],
@@ -3262,6 +3500,12 @@ const LambdaInterceptorConfiguration$ = [3, n0, _LIC,
3262
3500
  [0], 1
3263
3501
  ];
3264
3502
  exports.LambdaInterceptorConfiguration$ = LambdaInterceptorConfiguration$;
3503
+ const LambdaTransformConfiguration$ = [3, n0, _LTC,
3504
+ 0,
3505
+ [_ar],
3506
+ [0]
3507
+ ];
3508
+ exports.LambdaTransformConfiguration$ = LambdaTransformConfiguration$;
3265
3509
  const LifecycleConfiguration$ = [3, n0, _LC,
3266
3510
  0,
3267
3511
  [_iRST, _mL],
@@ -3472,6 +3716,18 @@ const ListGatewayTargetsResponse$ = [3, n0, _LGTRi,
3472
3716
  [[() => TargetSummaries, 0], 0], 1
3473
3717
  ];
3474
3718
  exports.ListGatewayTargetsResponse$ = ListGatewayTargetsResponse$;
3719
+ const ListHarnessEndpointsRequest$ = [3, n0, _LHER,
3720
+ 0,
3721
+ [_hI, _mR, _nTe],
3722
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
3723
+ ];
3724
+ exports.ListHarnessEndpointsRequest$ = ListHarnessEndpointsRequest$;
3725
+ const ListHarnessEndpointsResponse$ = [3, n0, _LHERi,
3726
+ 0,
3727
+ [_endp, _nTe],
3728
+ [() => HarnessEndpoints, 0], 1
3729
+ ];
3730
+ exports.ListHarnessEndpointsResponse$ = ListHarnessEndpointsResponse$;
3475
3731
  const ListHarnessesRequest$ = [3, n0, _LHR,
3476
3732
  0,
3477
3733
  [_mR, _nTe],
@@ -3484,6 +3740,18 @@ const ListHarnessesResponse$ = [3, n0, _LHRi,
3484
3740
  [() => HarnessSummaries, 0], 1
3485
3741
  ];
3486
3742
  exports.ListHarnessesResponse$ = ListHarnessesResponse$;
3743
+ const ListHarnessVersionsRequest$ = [3, n0, _LHVR,
3744
+ 0,
3745
+ [_hI, _mR, _nTe],
3746
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
3747
+ ];
3748
+ exports.ListHarnessVersionsRequest$ = ListHarnessVersionsRequest$;
3749
+ const ListHarnessVersionsResponse$ = [3, n0, _LHVRi,
3750
+ 0,
3751
+ [_hVa, _nTe],
3752
+ [() => HarnessVersionSummaries, 0], 1
3753
+ ];
3754
+ exports.ListHarnessVersionsResponse$ = ListHarnessVersionsResponse$;
3487
3755
  const ListMemoriesInput$ = [3, n0, _LMI,
3488
3756
  0,
3489
3757
  [_mR, _nTe],
@@ -3696,7 +3964,7 @@ const LlmAsAJudgeEvaluatorConfig$ = [3, n0, _LAAJEC,
3696
3964
  exports.LlmAsAJudgeEvaluatorConfig$ = LlmAsAJudgeEvaluatorConfig$;
3697
3965
  const LlmExtractionConfig$ = [3, n0, _LECl,
3698
3966
  0,
3699
- [_de, _lEI, _va],
3967
+ [_de, _lEI, _val],
3700
3968
  [[() => Definition, 0], [() => LlmExtractionInstruction, 0], () => Validation$], 1
3701
3969
  ];
3702
3970
  exports.LlmExtractionConfig$ = LlmExtractionConfig$;
@@ -3733,13 +4001,13 @@ exports.McpDescriptor$ = McpDescriptor$;
3733
4001
  const MCPGatewayConfiguration$ = [3, n0, _MCPGC,
3734
4002
  0,
3735
4003
  [_sVu, _ins, _sTe, _sCe, _sCt],
3736
- [64 | 0, 0, 0, () => SessionConfiguration$, () => StreamingConfiguration$]
4004
+ [64 | 0, [() => McpInstructions, 0], 0, () => SessionConfiguration$, () => StreamingConfiguration$]
3737
4005
  ];
3738
4006
  exports.MCPGatewayConfiguration$ = MCPGatewayConfiguration$;
3739
4007
  const McpLambdaTargetConfiguration$ = [3, n0, _MLTC,
3740
4008
  0,
3741
4009
  [_lA, _tSo],
3742
- [0, () => ToolSchema$], 2
4010
+ [0, [() => ToolSchema$, 0]], 2
3743
4011
  ];
3744
4012
  exports.McpLambdaTargetConfiguration$ = McpLambdaTargetConfiguration$;
3745
4013
  const McpServerTargetConfiguration$ = [3, n0, _MSTC,
@@ -3750,8 +4018,8 @@ const McpServerTargetConfiguration$ = [3, n0, _MSTC,
3750
4018
  exports.McpServerTargetConfiguration$ = McpServerTargetConfiguration$;
3751
4019
  const Memory$ = [3, n0, _M,
3752
4020
  0,
3753
- [_ar, _i, _n, _eED, _st, _cA, _uA, _d, _eKA, _mERA, _fR, _stra, _iK, _sDR],
3754
- [0, 0, 0, 1, 0, 4, 4, [() => Description, 0], 0, 0, 0, [() => MemoryStrategyList, 0], () => IndexedKeysList, () => StreamDeliveryResources$], 7
4021
+ [_ar, _i, _n, _eED, _st, _cA, _uA, _d, _eKA, _mERA, _fR, _str, _iK, _sDR, _mBRA],
4022
+ [0, 0, 0, 1, 0, 4, 4, [() => Description, 0], 0, 0, 0, [() => MemoryStrategyList, 0], () => IndexedKeysList, () => StreamDeliveryResources$, 0], 7
3755
4023
  ];
3756
4024
  exports.Memory$ = Memory$;
3757
4025
  const MemoryRecordSchema$ = [3, n0, _MRS,
@@ -3768,8 +4036,8 @@ const MemoryStrategy$ = [3, n0, _MS,
3768
4036
  exports.MemoryStrategy$ = MemoryStrategy$;
3769
4037
  const MemorySummary$ = [3, n0, _MSe,
3770
4038
  0,
3771
- [_cA, _uA, _ar, _i, _st],
3772
- [4, 4, 0, 0, 0], 2
4039
+ [_cA, _uA, _ar, _i, _st, _mBRA],
4040
+ [4, 4, 0, 0, 0, 0], 2
3773
4041
  ];
3774
4042
  exports.MemorySummary$ = MemorySummary$;
3775
4043
  const MessageBasedTrigger$ = [3, n0, _MBT,
@@ -3808,6 +4076,18 @@ const MicrosoftOauth2ProviderConfigOutput$ = [3, n0, _MOPCO,
3808
4076
  [() => Oauth2Discovery$, 0], 1
3809
4077
  ];
3810
4078
  exports.MicrosoftOauth2ProviderConfigOutput$ = MicrosoftOauth2ProviderConfigOutput$;
4079
+ const ModelEntry$ = [3, n0, _ME,
4080
+ 0,
4081
+ [_mo],
4082
+ [0], 1
4083
+ ];
4084
+ exports.ModelEntry$ = ModelEntry$;
4085
+ const ModelMapping$ = [3, n0, _MM,
4086
+ 0,
4087
+ [_pPr],
4088
+ [() => ProviderPrefix$]
4089
+ ];
4090
+ exports.ModelMapping$ = ModelMapping$;
3811
4091
  const ModifyInvocationConfigurationInput$ = [3, n0, _MICI,
3812
4092
  0,
3813
4093
  [_tA, _pDBN],
@@ -3852,7 +4132,7 @@ const NumberValidation$ = [3, n0, _NV,
3852
4132
  exports.NumberValidation$ = NumberValidation$;
3853
4133
  const NumericalScaleDefinition$ = [3, n0, _NSD,
3854
4134
  0,
3855
- [_de, _v, _la],
4135
+ [_de, _va, _la],
3856
4136
  [0, 1, 0], 3
3857
4137
  ];
3858
4138
  exports.NumericalScaleDefinition$ = NumericalScaleDefinition$;
@@ -3898,6 +4178,12 @@ const OutputConfig$ = [3, n0, _OC,
3898
4178
  [() => CloudWatchOutputConfig$], 1
3899
4179
  ];
3900
4180
  exports.OutputConfig$ = OutputConfig$;
4181
+ const PassthroughTargetConfiguration$ = [3, n0, _PTC,
4182
+ 0,
4183
+ [_end, _pT, _sch, _sCti],
4184
+ [0, 0, [() => HttpApiSchemaConfiguration$, 0], () => StickinessConfiguration$], 2
4185
+ ];
4186
+ exports.PassthroughTargetConfiguration$ = PassthroughTargetConfiguration$;
3901
4187
  const PaymentConnectorSummary$ = [3, n0, _PCS,
3902
4188
  0,
3903
4189
  [_pCI, _n, _t, _st, _lUA],
@@ -3924,8 +4210,8 @@ const PaymentManagerSummary$ = [3, n0, _PMS,
3924
4210
  exports.PaymentManagerSummary$ = PaymentManagerSummary$;
3925
4211
  const Policy$ = [3, n0, _Po,
3926
4212
  0,
3927
- [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _d],
3928
- [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, [() => Description, 0]], 9
4213
+ [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _eM, _d],
4214
+ [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, 0, [() => Description, 0]], 9
3929
4215
  ];
3930
4216
  exports.Policy$ = Policy$;
3931
4217
  const PolicyEngine$ = [3, n0, _PE,
@@ -3964,10 +4250,16 @@ const PolicyGenerationSummary$ = [3, n0, _PGS,
3964
4250
  [0, 0, 0, 0, () => Resource$, 5, 5, 0, 0], 8
3965
4251
  ];
3966
4252
  exports.PolicyGenerationSummary$ = PolicyGenerationSummary$;
3967
- const PolicySummary$ = [3, n0, _PS,
4253
+ const PolicyStatement$ = [3, n0, _PS,
3968
4254
  0,
3969
- [_pIo, _n, _pEI, _cA, _uA, _pAo, _st],
3970
- [0, 0, 0, 5, 5, 0, 0], 7
4255
+ [_stat],
4256
+ [0], 1
4257
+ ];
4258
+ exports.PolicyStatement$ = PolicyStatement$;
4259
+ const PolicySummary$ = [3, n0, _PSo,
4260
+ 0,
4261
+ [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _eM],
4262
+ [0, 0, 0, 5, 5, 0, 0, 0], 7
3971
4263
  ];
3972
4264
  exports.PolicySummary$ = PolicySummary$;
3973
4265
  const PrivateEndpointOverride$ = [3, n0, _PEO,
@@ -3982,6 +4274,12 @@ const ProtocolConfiguration$ = [3, n0, _PC,
3982
4274
  [0], 1
3983
4275
  ];
3984
4276
  exports.ProtocolConfiguration$ = ProtocolConfiguration$;
4277
+ const ProviderPrefix$ = [3, n0, _PP,
4278
+ 0,
4279
+ [_stri, _sep],
4280
+ [2, 0]
4281
+ ];
4282
+ exports.ProviderPrefix$ = ProviderPrefix$;
3985
4283
  const PutResourcePolicyRequest$ = [3, n0, _PRPR,
3986
4284
  0,
3987
4285
  [_rAes, _po],
@@ -4044,8 +4342,8 @@ const RuntimeMetadataConfiguration$ = [3, n0, _RMC,
4044
4342
  exports.RuntimeMetadataConfiguration$ = RuntimeMetadataConfiguration$;
4045
4343
  const RuntimeTargetConfiguration$ = [3, n0, _RTC,
4046
4344
  0,
4047
- [_ar, _q],
4048
- [0, 0], 1
4345
+ [_ar, _q, _sch],
4346
+ [0, 0, [() => HttpApiSchemaConfiguration$, 0]], 1
4049
4347
  ];
4050
4348
  exports.RuntimeTargetConfiguration$ = RuntimeTargetConfiguration$;
4051
4349
  const S3Configuration$ = [3, n0, _SC,
@@ -4246,7 +4544,13 @@ const StaticRoute$ = [3, n0, _SRt,
4246
4544
  [[() => TargetName, 0]], 1
4247
4545
  ];
4248
4546
  exports.StaticRoute$ = StaticRoute$;
4249
- const StrategyConfiguration$ = [3, n0, _SCt,
4547
+ const StickinessConfiguration$ = [3, n0, _SCt,
4548
+ 0,
4549
+ [_id, _ti],
4550
+ [0, 1], 1
4551
+ ];
4552
+ exports.StickinessConfiguration$ = StickinessConfiguration$;
4553
+ const StrategyConfiguration$ = [3, n0, _SCtr,
4250
4554
  0,
4251
4555
  [_t, _ex, _cons, _ref, _sMC],
4252
4556
  [0, [() => ExtractionConfiguration$, 0], [() => ConsolidationConfiguration$, 0], [() => ReflectionConfiguration$, 0], () => SelfManagedConfiguration$]
@@ -4258,7 +4562,7 @@ const StreamDeliveryResources$ = [3, n0, _SDR,
4258
4562
  [() => StreamDeliveryResourcesList], 1
4259
4563
  ];
4260
4564
  exports.StreamDeliveryResources$ = StreamDeliveryResources$;
4261
- const StreamingConfiguration$ = [3, n0, _SCtr,
4565
+ const StreamingConfiguration$ = [3, n0, _SCtre,
4262
4566
  0,
4263
4567
  [_eRS],
4264
4568
  [2]
@@ -4362,8 +4666,8 @@ const TagResourceResponse$ = [3, n0, _TRRa,
4362
4666
  exports.TagResourceResponse$ = TagResourceResponse$;
4363
4667
  const TargetSummary$ = [3, n0, _TS,
4364
4668
  0,
4365
- [_tI, _n, _st, _cA, _uA, _d, _rP],
4366
- [0, [() => TargetName, 0], 0, 5, 5, [() => TargetDescription, 0], 1], 5
4669
+ [_tI, _n, _st, _cA, _uA, _d, _rP, _lSAa, _aD, _tT, _lMi],
4670
+ [0, [() => TargetName, 0], 0, 5, 5, [() => TargetDescription, 0], 1, 5, () => AuthorizationData$, 0, 0], 5
4367
4671
  ];
4368
4672
  exports.TargetSummary$ = TargetSummary$;
4369
4673
  const TargetTrafficSplitEntry$ = [3, n0, _TTSE,
@@ -4403,14 +4707,14 @@ const TokenExchangeGrantTypeConfigType$ = [3, n0, _TEGTCT,
4403
4707
  ];
4404
4708
  exports.TokenExchangeGrantTypeConfigType$ = TokenExchangeGrantTypeConfigType$;
4405
4709
  const ToolDefinition$ = [3, n0, _TDo,
4406
- 0,
4710
+ 8,
4407
4711
  [_n, _d, _iS, _oS],
4408
4712
  [0, 0, () => SchemaDefinition$, () => SchemaDefinition$], 3
4409
4713
  ];
4410
4714
  exports.ToolDefinition$ = ToolDefinition$;
4411
4715
  const ToolsDefinition$ = [3, n0, _TDoo,
4412
4716
  0,
4413
- [_pV, _iC],
4717
+ [_pVr, _iC],
4414
4718
  [0, 0]
4415
4719
  ];
4416
4720
  exports.ToolsDefinition$ = ToolsDefinition$;
@@ -4632,14 +4936,14 @@ const UpdateEvaluatorResponse$ = [3, n0, _UERp,
4632
4936
  exports.UpdateEvaluatorResponse$ = UpdateEvaluatorResponse$;
4633
4937
  const UpdateGatewayRequest$ = [3, n0, _UGR,
4634
4938
  0,
4635
- [_gIa, _n, _rA, _aT, _d, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL],
4636
- [[0, 1], [() => GatewayName, 0], 0, 0, [() => GatewayDescription, 0], 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0], 4
4939
+ [_gIa, _n, _rA, _aT, _d, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _eL, _wC],
4940
+ [[0, 1], 0, 0, 0, [() => GatewayDescription, 0], 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0, () => WafConfiguration$], 4
4637
4941
  ];
4638
4942
  exports.UpdateGatewayRequest$ = UpdateGatewayRequest$;
4639
4943
  const UpdateGatewayResponse$ = [3, n0, _UGRp,
4640
4944
  0,
4641
- [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
4642
- [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 7
4945
+ [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
4946
+ [0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
4643
4947
  ];
4644
4948
  exports.UpdateGatewayResponse$ = UpdateGatewayResponse$;
4645
4949
  const UpdateGatewayRuleRequest$ = [3, n0, _UGRR,
@@ -4656,8 +4960,8 @@ const UpdateGatewayRuleResponse$ = [3, n0, _UGRRp,
4656
4960
  exports.UpdateGatewayRuleResponse$ = UpdateGatewayRuleResponse$;
4657
4961
  const UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
4658
4962
  0,
4659
- [_gIa, _tI, _n, _tC, _d, _cPC, _mC, _pE],
4660
- [[0, 1], [0, 1], [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => TargetDescription, 0], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 4
4963
+ [_gIa, _tI, _tC, _n, _d, _cPC, _mC, _pE],
4964
+ [[0, 1], [0, 1], [() => TargetConfiguration$, 0], [() => TargetName, 0], [() => TargetDescription, 0], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 3
4661
4965
  ];
4662
4966
  exports.UpdateGatewayTargetRequest$ = UpdateGatewayTargetRequest$;
4663
4967
  const UpdateGatewayTargetResponse$ = [3, n0, _UGTRp,
@@ -4666,6 +4970,18 @@ const UpdateGatewayTargetResponse$ = [3, n0, _UGTRp,
4666
4970
  [0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
4667
4971
  ];
4668
4972
  exports.UpdateGatewayTargetResponse$ = UpdateGatewayTargetResponse$;
4973
+ const UpdateHarnessEndpointRequest$ = [3, n0, _UHER,
4974
+ 0,
4975
+ [_hI, _eN, _tV, _d, _cT],
4976
+ [[0, 1], [0, 1], 0, 0, [0, 4]], 2
4977
+ ];
4978
+ exports.UpdateHarnessEndpointRequest$ = UpdateHarnessEndpointRequest$;
4979
+ const UpdateHarnessEndpointResponse$ = [3, n0, _UHERp,
4980
+ 0,
4981
+ [_end],
4982
+ [() => HarnessEndpoint$], 1
4983
+ ];
4984
+ exports.UpdateHarnessEndpointResponse$ = UpdateHarnessEndpointResponse$;
4669
4985
  const UpdateHarnessRequest$ = [3, n0, _UHR,
4670
4986
  0,
4671
4987
  [_hI, _cT, _eRA, _env, _eAn, _eV, _aCu, _mo, _sP, _to, _sk, _aTl, _mem, _tr, _mIa, _mT, _tS],
@@ -4764,14 +5080,14 @@ const UpdatePolicyEngineResponse$ = [3, n0, _UPERp,
4764
5080
  exports.UpdatePolicyEngineResponse$ = UpdatePolicyEngineResponse$;
4765
5081
  const UpdatePolicyRequest$ = [3, n0, _UPR,
4766
5082
  0,
4767
- [_pEI, _pIo, _d, _de, _vM],
4768
- [[0, 1], [0, 1], [() => UpdatedDescription$, 0], () => PolicyDefinition$, 0], 2
5083
+ [_pEI, _pIo, _d, _de, _vM, _eM],
5084
+ [[0, 1], [0, 1], [() => UpdatedDescription$, 0], () => PolicyDefinition$, 0, 0], 2
4769
5085
  ];
4770
5086
  exports.UpdatePolicyRequest$ = UpdatePolicyRequest$;
4771
5087
  const UpdatePolicyResponse$ = [3, n0, _UPRp,
4772
5088
  0,
4773
- [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _d],
4774
- [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, [() => Description, 0]], 9
5089
+ [_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _eM, _d],
5090
+ [0, 0, 0, 5, 5, 0, 0, () => PolicyDefinition$, 64 | 0, 0, [() => Description, 0]], 9
4775
5091
  ];
4776
5092
  exports.UpdatePolicyResponse$ = UpdatePolicyResponse$;
4777
5093
  const UpdateRegistryRecordRequest$ = [3, n0, _URRR,
@@ -4888,6 +5204,12 @@ const VpcConfig$ = [3, n0, _VC,
4888
5204
  [64 | 0, 64 | 0, 2], 2
4889
5205
  ];
4890
5206
  exports.VpcConfig$ = VpcConfig$;
5207
+ const WafConfiguration$ = [3, n0, _WC,
5208
+ 0,
5209
+ [_fM],
5210
+ [0]
5211
+ ];
5212
+ exports.WafConfiguration$ = WafConfiguration$;
4891
5213
  const WeightedOverride$ = [3, n0, _WO,
4892
5214
  0,
4893
5215
  [_tSra],
@@ -4975,6 +5297,12 @@ var ConfigurationBundleVersionList = 64 | 0;
4975
5297
  var ConfigurationBundleVersionSummaryList = [1, n0, _CBVSL,
4976
5298
  0, () => ConfigurationBundleVersionSummary$
4977
5299
  ];
5300
+ var ConnectorConfigurations = [1, n0, _CConn,
5301
+ 0, () => ConnectorConfiguration$
5302
+ ];
5303
+ var ConnectorParameterOverrides = [1, n0, _CPOo,
5304
+ 0, () => ConnectorParameterOverride$
5305
+ ];
4978
5306
  var ContentConfigurationList = [1, n0, _CCL,
4979
5307
  0, () => ContentConfiguration$
4980
5308
  ];
@@ -5001,6 +5329,7 @@ var DatasetVersionSummaryList = [1, n0, _DVSL,
5001
5329
  var DeleteMemoryStrategiesList = [1, n0, _DMSL,
5002
5330
  0, () => DeleteMemoryStrategyInput$
5003
5331
  ];
5332
+ var EnabledConnectors = 64 | 0;
5004
5333
  var EntryPoints = 64 | 0;
5005
5334
  var EvaluatorList = [1, n0, _EL,
5006
5335
  0, () => EvaluatorReference$
@@ -5036,6 +5365,11 @@ var GatewayTargetList = [1, n0, _GTL,
5036
5365
  0]
5037
5366
  ];
5038
5367
  var HarnessAllowedTools = 64 | 0;
5368
+ var HarnessAwsSkillPaths = 64 | 0;
5369
+ var HarnessEndpoints = [1, n0, _HEa,
5370
+ 0, () => HarnessEndpoint$
5371
+ ];
5372
+ var HarnessManagedMemoryStrategyList = 64 | 0;
5039
5373
  var HarnessSkills = [1, n0, _HSa,
5040
5374
  0, () => HarnessSkill$
5041
5375
  ];
@@ -5050,12 +5384,24 @@ var HarnessTools = [1, n0, _HTa,
5050
5384
  0, [() => HarnessTool$,
5051
5385
  0]
5052
5386
  ];
5387
+ var HarnessVersionSummaries = [1, n0, _HVSa,
5388
+ 0, () => HarnessVersionSummary$
5389
+ ];
5390
+ var HostingEnvironmentListType = [1, n0, _HELT,
5391
+ 0, () => HostingEnvironment$
5392
+ ];
5053
5393
  var IndexedKeysList = [1, n0, _IKL,
5054
5394
  0, () => IndexedKey$
5055
5395
  ];
5396
+ var InferenceOperationConfigurations = [1, n0, _IOCn,
5397
+ 0, () => InferenceOperationConfiguration$
5398
+ ];
5056
5399
  var InsightList = [1, n0, _IL,
5057
5400
  0, () => Insight$
5058
5401
  ];
5402
+ var InterceptorPayloadExclusionSelectorList = [1, n0, _IPESL,
5403
+ 0, () => InterceptorPayloadExclusionSelector$
5404
+ ];
5059
5405
  var LogGroupNamesList = 64 | 0;
5060
5406
  var MatchPathPatterns = 64 | 0;
5061
5407
  var MatchPrincipalEntries = [1, n0, _MPE,
@@ -5078,6 +5424,9 @@ var MetadataSchemaList = [1, n0, _MSLet,
5078
5424
  0, [() => MetadataSchemaEntry$,
5079
5425
  0]
5080
5426
  ];
5427
+ var ModelEntries = [1, n0, _MEo,
5428
+ 0, () => ModelEntry$
5429
+ ];
5081
5430
  var ModifyMemoryStrategiesList = [1, n0, _MMSL,
5082
5431
  0, [() => ModifyMemoryStrategyInput$,
5083
5432
  0]
@@ -5173,7 +5522,8 @@ var TargetTrafficSplitEntries = [1, n0, _TTSEa,
5173
5522
  ];
5174
5523
  var TokenEndpointAuthMethodsType = 64 | 0;
5175
5524
  var ToolDefinitions = [1, n0, _TDool,
5176
- 0, () => ToolDefinition$
5525
+ 0, [() => ToolDefinition$,
5526
+ 0]
5177
5527
  ];
5178
5528
  var TrafficSplitEntries = [1, n0, _TSEr,
5179
5529
  0, () => TrafficSplitEntry$
@@ -5190,6 +5540,7 @@ var ValidationExceptionFieldList = [1, n0, _VEFL,
5190
5540
  var WorkloadIdentityList = [1, n0, _WIL,
5191
5541
  0, () => WorkloadIdentityType$
5192
5542
  ];
5543
+ var WorkloadIdentityNameListType = 64 | 0;
5193
5544
  var ComponentConfigurationMap = [2, n0, _CCM,
5194
5545
  0, [0,
5195
5546
  0],
@@ -5406,7 +5757,7 @@ exports.FilterValue$ = FilterValue$;
5406
5757
  const GatewayProtocolConfiguration$ = [4, n0, _GPC,
5407
5758
  0,
5408
5759
  [_mc],
5409
- [() => MCPGatewayConfiguration$]
5760
+ [[() => MCPGatewayConfiguration$, 0]]
5410
5761
  ];
5411
5762
  exports.GatewayProtocolConfiguration$ = GatewayProtocolConfiguration$;
5412
5763
  const HarnessEnvironmentArtifact$ = [4, n0, _HEA,
@@ -5435,8 +5786,8 @@ const HarnessGatewayOutboundAuth$ = [4, n0, _HGOA,
5435
5786
  exports.HarnessGatewayOutboundAuth$ = HarnessGatewayOutboundAuth$;
5436
5787
  const HarnessMemoryConfiguration$ = [4, n0, _HMC,
5437
5788
  0,
5438
- [_aCMC],
5439
- [() => HarnessAgentCoreMemoryConfiguration$]
5789
+ [_aCMC, _mMC, _di],
5790
+ [() => HarnessAgentCoreMemoryConfiguration$, () => HarnessManagedMemoryConfiguration$, () => HarnessDisabledMemoryConfiguration$]
5440
5791
  ];
5441
5792
  exports.HarnessMemoryConfiguration$ = HarnessMemoryConfiguration$;
5442
5793
  const HarnessModelConfiguration$ = [4, n0, _HMCa,
@@ -5447,8 +5798,8 @@ const HarnessModelConfiguration$ = [4, n0, _HMCa,
5447
5798
  exports.HarnessModelConfiguration$ = HarnessModelConfiguration$;
5448
5799
  const HarnessSkill$ = [4, n0, _HSarn,
5449
5800
  0,
5450
- [_p, _s_, _g],
5451
- [0, () => HarnessSkillS3Source$, () => HarnessSkillGitSource$]
5801
+ [_p, _s_, _g, _aSw],
5802
+ [0, () => HarnessSkillS3Source$, () => HarnessSkillGitSource$, () => HarnessSkillAwsSkillsSource$]
5452
5803
  ];
5453
5804
  exports.HarnessSkill$ = HarnessSkill$;
5454
5805
  const HarnessSystemContentBlock$ = [4, n0, _HSCB,
@@ -5471,16 +5822,28 @@ const HarnessTruncationStrategyConfiguration$ = [4, n0, _HTSC,
5471
5822
  exports.HarnessTruncationStrategyConfiguration$ = HarnessTruncationStrategyConfiguration$;
5472
5823
  const HttpTargetConfiguration$ = [4, n0, _HTCt,
5473
5824
  0,
5474
- [_aRg],
5475
- [() => RuntimeTargetConfiguration$]
5825
+ [_aRg, _pas],
5826
+ [[() => RuntimeTargetConfiguration$, 0], [() => PassthroughTargetConfiguration$, 0]]
5476
5827
  ];
5477
5828
  exports.HttpTargetConfiguration$ = HttpTargetConfiguration$;
5829
+ const InferenceTargetConfiguration$ = [4, n0, _ITC,
5830
+ 0,
5831
+ [_conn, _prov],
5832
+ [() => InferenceConnectorTargetConfiguration$, () => InferenceProviderTargetConfiguration$]
5833
+ ];
5834
+ exports.InferenceTargetConfiguration$ = InferenceTargetConfiguration$;
5478
5835
  const InterceptorConfiguration$ = [4, n0, _ICnt,
5479
5836
  0,
5480
5837
  [_lam],
5481
5838
  [() => LambdaInterceptorConfiguration$]
5482
5839
  ];
5483
5840
  exports.InterceptorConfiguration$ = InterceptorConfiguration$;
5841
+ const InterceptorPayloadExclusionSelector$ = [4, n0, _IPES,
5842
+ 0,
5843
+ [_fie],
5844
+ [0]
5845
+ ];
5846
+ exports.InterceptorPayloadExclusionSelector$ = InterceptorPayloadExclusionSelector$;
5484
5847
  const MatchPrincipalEntry$ = [4, n0, _MPEa,
5485
5848
  0,
5486
5849
  [_iPa],
@@ -5489,8 +5852,8 @@ const MatchPrincipalEntry$ = [4, n0, _MPEa,
5489
5852
  exports.MatchPrincipalEntry$ = MatchPrincipalEntry$;
5490
5853
  const McpTargetConfiguration$ = [4, n0, _MTC,
5491
5854
  0,
5492
- [_oAS, _sMm, _lam, _mSc, _aG],
5493
- [[() => ApiSchemaConfiguration$, 0], [() => ApiSchemaConfiguration$, 0], () => McpLambdaTargetConfiguration$, [() => McpServerTargetConfiguration$, 0], () => ApiGatewayTargetConfiguration$]
5855
+ [_oAS, _sMm, _lam, _mSc, _aG, _conn],
5856
+ [[() => ApiSchemaConfiguration$, 0], [() => ApiSchemaConfiguration$, 0], [() => McpLambdaTargetConfiguration$, 0], [() => McpServerTargetConfiguration$, 0], () => ApiGatewayTargetConfiguration$, () => ConnectorTargetConfiguration$]
5494
5857
  ];
5495
5858
  exports.McpTargetConfiguration$ = McpTargetConfiguration$;
5496
5859
  const McpToolSchemaConfiguration$ = [4, n0, _MTSC,
@@ -5555,8 +5918,8 @@ const PaymentProviderConfigurationOutput$ = [4, n0, _PPCO,
5555
5918
  exports.PaymentProviderConfigurationOutput$ = PaymentProviderConfigurationOutput$;
5556
5919
  const PolicyDefinition$ = [4, n0, _PD,
5557
5920
  0,
5558
- [_ced, _pGo],
5559
- [() => CedarPolicy$, () => PolicyGenerationDetails$]
5921
+ [_ced, _pGo, _po],
5922
+ [() => CedarPolicy$, () => PolicyGenerationDetails$, () => PolicyStatement$]
5560
5923
  ];
5561
5924
  exports.PolicyDefinition$ = PolicyDefinition$;
5562
5925
  const PrivateEndpoint$ = [4, n0, _PEr,
@@ -5621,14 +5984,14 @@ const StreamDeliveryResource$ = [4, n0, _SDRt,
5621
5984
  exports.StreamDeliveryResource$ = StreamDeliveryResource$;
5622
5985
  const TargetConfiguration$ = [4, n0, _TC,
5623
5986
  0,
5624
- [_mc, _ht],
5625
- [[() => McpTargetConfiguration$, 0], () => HttpTargetConfiguration$]
5987
+ [_mc, _ht, _inf],
5988
+ [[() => McpTargetConfiguration$, 0], [() => HttpTargetConfiguration$, 0], () => InferenceTargetConfiguration$]
5626
5989
  ];
5627
5990
  exports.TargetConfiguration$ = TargetConfiguration$;
5628
5991
  const ToolSchema$ = [4, n0, _TSo,
5629
5992
  0,
5630
5993
  [_s_, _iPn],
5631
- [() => S3Configuration$, () => ToolDefinitions]
5994
+ [() => S3Configuration$, [() => ToolDefinitions, 0]]
5632
5995
  ];
5633
5996
  exports.ToolSchema$ = ToolSchema$;
5634
5997
  const TriggerCondition$ = [4, n0, _TCr,
@@ -5694,6 +6057,9 @@ exports.CreateGatewayTarget$ = [9, n0, _CGT,
5694
6057
  exports.CreateHarness$ = [9, n0, _CH,
5695
6058
  { [_ht]: ["POST", "/harnesses", 201] }, () => CreateHarnessRequest$, () => CreateHarnessResponse$
5696
6059
  ];
6060
+ exports.CreateHarnessEndpoint$ = [9, n0, _CHE,
6061
+ { [_ht]: ["POST", "/harnesses/{harnessId}/endpoints", 201] }, () => CreateHarnessEndpointRequest$, () => CreateHarnessEndpointResponse$
6062
+ ];
5697
6063
  exports.CreateMemory$ = [9, n0, _CM,
5698
6064
  { [_ht]: ["POST", "/memories/create", 202] }, () => CreateMemoryInput$, () => CreateMemoryOutput$
5699
6065
  ];
@@ -5769,6 +6135,9 @@ exports.DeleteGatewayTarget$ = [9, n0, _DGT,
5769
6135
  exports.DeleteHarness$ = [9, n0, _DH,
5770
6136
  { [_ht]: ["DELETE", "/harnesses/{harnessId}", 200] }, () => DeleteHarnessRequest$, () => DeleteHarnessResponse$
5771
6137
  ];
6138
+ exports.DeleteHarnessEndpoint$ = [9, n0, _DHE,
6139
+ { [_ht]: ["DELETE", "/harnesses/{harnessId}/endpoints/{endpointName}", 200] }, () => DeleteHarnessEndpointRequest$, () => DeleteHarnessEndpointResponse$
6140
+ ];
5772
6141
  exports.DeleteMemory$ = [9, n0, _DM,
5773
6142
  { [_ht]: ["DELETE", "/memories/{memoryId}/delete", 202] }, () => DeleteMemoryInput$, () => DeleteMemoryOutput$
5774
6143
  ];
@@ -5847,6 +6216,9 @@ exports.GetGatewayTarget$ = [9, n0, _GGT,
5847
6216
  exports.GetHarness$ = [9, n0, _GH,
5848
6217
  { [_ht]: ["GET", "/harnesses/{harnessId}", 200] }, () => GetHarnessRequest$, () => GetHarnessResponse$
5849
6218
  ];
6219
+ exports.GetHarnessEndpoint$ = [9, n0, _GHE,
6220
+ { [_ht]: ["GET", "/harnesses/{harnessId}/endpoints/{endpointName}", 200] }, () => GetHarnessEndpointRequest$, () => GetHarnessEndpointResponse$
6221
+ ];
5850
6222
  exports.GetMemory$ = [9, n0, _GM,
5851
6223
  { [_ht]: ["GET", "/memories/{memoryId}/details", 200] }, () => GetMemoryInput$, () => GetMemoryOutput$
5852
6224
  ];
@@ -5946,9 +6318,15 @@ exports.ListGateways$ = [9, n0, _LG,
5946
6318
  exports.ListGatewayTargets$ = [9, n0, _LGT,
5947
6319
  { [_ht]: ["GET", "/gateways/{gatewayIdentifier}/targets/", 200] }, () => ListGatewayTargetsRequest$, () => ListGatewayTargetsResponse$
5948
6320
  ];
6321
+ exports.ListHarnessEndpoints$ = [9, n0, _LHE,
6322
+ { [_ht]: ["GET", "/harnesses/{harnessId}/endpoints", 200] }, () => ListHarnessEndpointsRequest$, () => ListHarnessEndpointsResponse$
6323
+ ];
5949
6324
  exports.ListHarnesses$ = [9, n0, _LH,
5950
6325
  { [_ht]: ["GET", "/harnesses", 200] }, () => ListHarnessesRequest$, () => ListHarnessesResponse$
5951
6326
  ];
6327
+ exports.ListHarnessVersions$ = [9, n0, _LHV,
6328
+ { [_ht]: ["GET", "/harnesses/{harnessId}/versions", 200] }, () => ListHarnessVersionsRequest$, () => ListHarnessVersionsResponse$
6329
+ ];
5952
6330
  exports.ListMemories$ = [9, n0, _LM,
5953
6331
  { [_ht]: ["POST", "/memories/", 200] }, () => ListMemoriesInput$, () => ListMemoriesOutput$
5954
6332
  ];
@@ -6054,6 +6432,9 @@ exports.UpdateGatewayTarget$ = [9, n0, _UGT,
6054
6432
  exports.UpdateHarness$ = [9, n0, _UH,
6055
6433
  { [_ht]: ["PATCH", "/harnesses/{harnessId}", 200] }, () => UpdateHarnessRequest$, () => UpdateHarnessResponse$
6056
6434
  ];
6435
+ exports.UpdateHarnessEndpoint$ = [9, n0, _UHE,
6436
+ { [_ht]: ["PATCH", "/harnesses/{harnessId}/endpoints/{endpointName}", 200] }, () => UpdateHarnessEndpointRequest$, () => UpdateHarnessEndpointResponse$
6437
+ ];
6057
6438
  exports.UpdateMemory$ = [9, n0, _UM,
6058
6439
  { [_ht]: ["PUT", "/memories/{memoryId}/update", 202] }, () => UpdateMemoryInput$, () => UpdateMemoryOutput$
6059
6440
  ];