@aws-sdk/client-bedrock-agentcore-control 3.1038.0 → 3.1039.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 +84 -0
- package/dist-cjs/index.js +215 -0
- package/dist-cjs/schemas/schemas_0.js +529 -98
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/CreateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/CreateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/DeleteConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/DeleteGatewayRuleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleVersionCommand.js +16 -0
- package/dist-es/commands/GetGatewayRuleCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundleVersionsCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundlesCommand.js +16 -0
- package/dist-es/commands/ListGatewayRulesCommand.js +16 -0
- package/dist-es/commands/UpdateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/UpdateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +30 -0
- package/dist-es/pagination/ListConfigurationBundleVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListConfigurationBundlesPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +516 -86
- package/dist-types/BedrockAgentCoreControl.d.ts +106 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +111 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/CreateGatewayRuleCommand.d.ts +232 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConfigurationBundleCommand.d.ts +93 -0
- package/dist-types/commands/DeleteGatewayRuleCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +112 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +2 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +2 -2
- package/dist-types/commands/GetGatewayRuleCommand.d.ts +162 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundleVersionsCommand.d.ts +115 -0
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +95 -0
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewayRulesCommand.d.ts +168 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +2 -2
- package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -2
- package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/UpdateGatewayRuleCommand.d.ts +230 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +70 -0
- package/dist-types/models/models_0.d.ts +2866 -2901
- package/dist-types/models/models_1.d.ts +1406 -4
- package/dist-types/pagination/ListConfigurationBundleVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConfigurationBundlesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +61 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +226 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConfigurationBundleVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGatewayRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListConfigurationBundleVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConfigurationBundlesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGatewayRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +405 -571
- package/dist-types/ts3.4/models/models_1.d.ts +592 -7
- package/dist-types/ts3.4/pagination/ListConfigurationBundleVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConfigurationBundlesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +61 -0
- package/package.json +7 -7
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
const _A = "Actions";
|
|
1
2
|
const _AC = "ApprovalConfiguration";
|
|
2
3
|
const _ACD = "AgentCardDefinition";
|
|
3
4
|
const _ACMVT = "AuthorizingClaimMatchValueType";
|
|
@@ -23,6 +24,7 @@ const _AREg = "AgentRuntimeEndpoints";
|
|
|
23
24
|
const _ARg = "AgentRuntimes";
|
|
24
25
|
const _ASC = "ApiSchemaConfiguration";
|
|
25
26
|
const _ASD = "AgentSkillsDescriptor";
|
|
27
|
+
const _Ac = "Action";
|
|
26
28
|
const _BEMC = "BedrockEvaluatorModelConfig";
|
|
27
29
|
const _BEP = "BrowserEnterprisePolicy";
|
|
28
30
|
const _BEPr = "BrowserEnterprisePolicies";
|
|
@@ -44,13 +46,23 @@ const _CARERr = "CreateAgentRuntimeEndpointResponse";
|
|
|
44
46
|
const _CARR = "CreateAgentRuntimeRequest";
|
|
45
47
|
const _CARRr = "CreateAgentRuntimeResponse";
|
|
46
48
|
const _CB = "CreateBrowser";
|
|
49
|
+
const _CBA = "ConfigurationBundleAction";
|
|
50
|
+
const _CBD = "ConfigurationBundleDescription";
|
|
47
51
|
const _CBEC = "CodeBasedEvaluatorConfig";
|
|
48
52
|
const _CBP = "CreateBrowserProfile";
|
|
49
53
|
const _CBPR = "CreateBrowserProfileRequest";
|
|
50
54
|
const _CBPRr = "CreateBrowserProfileResponse";
|
|
51
|
-
const _CBR = "
|
|
52
|
-
const _CBRr = "
|
|
55
|
+
const _CBR = "ConfigurationBundleReference";
|
|
56
|
+
const _CBRr = "CreateBrowserRequest";
|
|
57
|
+
const _CBRre = "CreateBrowserResponse";
|
|
58
|
+
const _CBS = "ConfigurationBundleSummary";
|
|
59
|
+
const _CBSL = "ConfigurationBundleSummaryList";
|
|
60
|
+
const _CBVS = "ConfigurationBundleVersionSummary";
|
|
61
|
+
const _CBVSL = "ConfigurationBundleVersionSummaryList";
|
|
53
62
|
const _CC = "CodeConfiguration";
|
|
63
|
+
const _CCB = "CreateConfigurationBundle";
|
|
64
|
+
const _CCBR = "CreateConfigurationBundleRequest";
|
|
65
|
+
const _CCBRr = "CreateConfigurationBundleResponse";
|
|
54
66
|
const _CCC = "CustomConsolidationConfiguration";
|
|
55
67
|
const _CCCI = "CustomConsolidationConfigurationInput";
|
|
56
68
|
const _CCI = "CustomConfigurationInput";
|
|
@@ -58,11 +70,13 @@ const _CCIR = "CreateCodeInterpreterRequest";
|
|
|
58
70
|
const _CCIRr = "CreateCodeInterpreterResponse";
|
|
59
71
|
const _CCIr = "CreateCodeInterpreter";
|
|
60
72
|
const _CCL = "ContentConfigurationList";
|
|
73
|
+
const _CCM = "ComponentConfigurationMap";
|
|
61
74
|
const _CCVT = "CustomClaimValidationType";
|
|
62
75
|
const _CCVTu = "CustomClaimValidationsType";
|
|
63
|
-
const _CCo = "
|
|
64
|
-
const _CCon = "
|
|
76
|
+
const _CCo = "ComponentConfiguration";
|
|
77
|
+
const _CCon = "ContainerConfiguration";
|
|
65
78
|
const _CCons = "ConsolidationConfiguration";
|
|
79
|
+
const _CCont = "ContentConfiguration";
|
|
66
80
|
const _CD = "CustomDescriptor";
|
|
67
81
|
const _CE = "ConflictException";
|
|
68
82
|
const _CEC = "CustomExtractionConfiguration";
|
|
@@ -72,7 +86,10 @@ const _CERr = "CreateEvaluatorResponse";
|
|
|
72
86
|
const _CEr = "CreateEvaluator";
|
|
73
87
|
const _CG = "CreateGateway";
|
|
74
88
|
const _CGR = "CreateGatewayRequest";
|
|
89
|
+
const _CGRR = "CreateGatewayRuleRequest";
|
|
90
|
+
const _CGRRr = "CreateGatewayRuleResponse";
|
|
75
91
|
const _CGRr = "CreateGatewayResponse";
|
|
92
|
+
const _CGRre = "CreateGatewayRule";
|
|
76
93
|
const _CGT = "CreateGatewayTarget";
|
|
77
94
|
const _CGTR = "CreateGatewayTargetRequest";
|
|
78
95
|
const _CGTRr = "CreateGatewayTargetResponse";
|
|
@@ -125,8 +142,10 @@ const _CWIRr = "CreateWorkloadIdentityResponse";
|
|
|
125
142
|
const _CWLIC = "CloudWatchLogsInputConfig";
|
|
126
143
|
const _CWOC = "CloudWatchOutputConfig";
|
|
127
144
|
const _Ce = "Certificates";
|
|
128
|
-
const _Co = "
|
|
129
|
-
const
|
|
145
|
+
const _Co = "Conditions";
|
|
146
|
+
const _Cod = "Code";
|
|
147
|
+
const _Con = "Condition";
|
|
148
|
+
const _Cont = "Content";
|
|
130
149
|
const _D = "Description";
|
|
131
150
|
const _DAKCP = "DeleteApiKeyCredentialProvider";
|
|
132
151
|
const _DAKCPR = "DeleteApiKeyCredentialProviderRequest";
|
|
@@ -143,6 +162,9 @@ const _DBPR = "DeleteBrowserProfileRequest";
|
|
|
143
162
|
const _DBPRe = "DeleteBrowserProfileResponse";
|
|
144
163
|
const _DBR = "DeleteBrowserRequest";
|
|
145
164
|
const _DBRe = "DeleteBrowserResponse";
|
|
165
|
+
const _DCB = "DeleteConfigurationBundle";
|
|
166
|
+
const _DCBR = "DeleteConfigurationBundleRequest";
|
|
167
|
+
const _DCBRe = "DeleteConfigurationBundleResponse";
|
|
146
168
|
const _DCI = "DeleteCodeInterpreter";
|
|
147
169
|
const _DCIR = "DeleteCodeInterpreterRequest";
|
|
148
170
|
const _DCIRe = "DeleteCodeInterpreterResponse";
|
|
@@ -152,7 +174,10 @@ const _DERe = "DeleteEvaluatorResponse";
|
|
|
152
174
|
const _DF = "DecryptionFailure";
|
|
153
175
|
const _DG = "DeleteGateway";
|
|
154
176
|
const _DGR = "DeleteGatewayRequest";
|
|
177
|
+
const _DGRR = "DeleteGatewayRuleRequest";
|
|
178
|
+
const _DGRRe = "DeleteGatewayRuleResponse";
|
|
155
179
|
const _DGRe = "DeleteGatewayResponse";
|
|
180
|
+
const _DGRel = "DeleteGatewayRule";
|
|
156
181
|
const _DGT = "DeleteGatewayTarget";
|
|
157
182
|
const _DGTR = "DeleteGatewayTargetRequest";
|
|
158
183
|
const _DGTRe = "DeleteGatewayTargetResponse";
|
|
@@ -237,6 +262,12 @@ const _GBPR = "GetBrowserProfileRequest";
|
|
|
237
262
|
const _GBPRe = "GetBrowserProfileResponse";
|
|
238
263
|
const _GBR = "GetBrowserRequest";
|
|
239
264
|
const _GBRe = "GetBrowserResponse";
|
|
265
|
+
const _GCB = "GetConfigurationBundle";
|
|
266
|
+
const _GCBR = "GetConfigurationBundleRequest";
|
|
267
|
+
const _GCBRe = "GetConfigurationBundleResponse";
|
|
268
|
+
const _GCBV = "GetConfigurationBundleVersion";
|
|
269
|
+
const _GCBVR = "GetConfigurationBundleVersionRequest";
|
|
270
|
+
const _GCBVRe = "GetConfigurationBundleVersionResponse";
|
|
240
271
|
const _GCI = "GetCodeInterpreter";
|
|
241
272
|
const _GCIR = "GetCodeInterpreterRequest";
|
|
242
273
|
const _GCIRe = "GetCodeInterpreterResponse";
|
|
@@ -246,7 +277,10 @@ const _GER = "GetEvaluatorRequest";
|
|
|
246
277
|
const _GERe = "GetEvaluatorResponse";
|
|
247
278
|
const _GG = "GetGateway";
|
|
248
279
|
const _GGR = "GetGatewayRequest";
|
|
280
|
+
const _GGRR = "GetGatewayRuleRequest";
|
|
281
|
+
const _GGRRe = "GetGatewayRuleResponse";
|
|
249
282
|
const _GGRe = "GetGatewayResponse";
|
|
283
|
+
const _GGRet = "GetGatewayRule";
|
|
250
284
|
const _GGT = "GetGatewayTarget";
|
|
251
285
|
const _GGTR = "GetGatewayTargetRequest";
|
|
252
286
|
const _GGTRe = "GetGatewayTargetResponse";
|
|
@@ -280,7 +314,8 @@ const _GPGR = "GetPolicyGenerationRequest";
|
|
|
280
314
|
const _GPGRe = "GetPolicyGenerationResponse";
|
|
281
315
|
const _GPR = "GetPolicyRequest";
|
|
282
316
|
const _GPRe = "GetPolicyResponse";
|
|
283
|
-
const _GR = "
|
|
317
|
+
const _GR = "GatewayRules";
|
|
318
|
+
const _GRD = "GatewayRuleDetail";
|
|
284
319
|
const _GRP = "GetResourcePolicy";
|
|
285
320
|
const _GRPR = "GetResourcePolicyRequest";
|
|
286
321
|
const _GRPRe = "GetResourcePolicyResponse";
|
|
@@ -289,6 +324,7 @@ const _GRRR = "GetRegistryRecordRequest";
|
|
|
289
324
|
const _GRRRe = "GetRegistryRecordResponse";
|
|
290
325
|
const _GRRe = "GetRegistryResponse";
|
|
291
326
|
const _GRRet = "GetRegistryRecord";
|
|
327
|
+
const _GRe = "GetRegistry";
|
|
292
328
|
const _GS = "GatewaySummary";
|
|
293
329
|
const _GSa = "GatewaySummaries";
|
|
294
330
|
const _GT = "GatewayTarget";
|
|
@@ -333,6 +369,7 @@ const _HSarn = "HarnessSkill";
|
|
|
333
369
|
const _HT = "HarnessTool";
|
|
334
370
|
const _HTC = "HarnessTruncationConfiguration";
|
|
335
371
|
const _HTCa = "HarnessToolConfiguration";
|
|
372
|
+
const _HTCt = "HttpTargetConfiguration";
|
|
336
373
|
const _HTSC = "HarnessTruncationStrategyConfiguration";
|
|
337
374
|
const _HTa = "HarnessTools";
|
|
338
375
|
const _IC = "InferenceConfiguration";
|
|
@@ -344,6 +381,7 @@ const _IIC = "InterceptorInputConfiguration";
|
|
|
344
381
|
const _IOPCI = "IncludedOauth2ProviderConfigInput";
|
|
345
382
|
const _IOPCO = "IncludedOauth2ProviderConfigOutput";
|
|
346
383
|
const _IP = "InlinePayload";
|
|
384
|
+
const _IPa = "IamPrincipal";
|
|
347
385
|
const _ISE = "InternalServerException";
|
|
348
386
|
const _KC = "KmsConfiguration";
|
|
349
387
|
const _KR = "KinesisResource";
|
|
@@ -367,6 +405,12 @@ const _LBPRi = "ListBrowserProfilesResponse";
|
|
|
367
405
|
const _LBR = "ListBrowsersRequest";
|
|
368
406
|
const _LBRi = "ListBrowsersResponse";
|
|
369
407
|
const _LC = "LifecycleConfiguration";
|
|
408
|
+
const _LCB = "ListConfigurationBundles";
|
|
409
|
+
const _LCBR = "ListConfigurationBundlesRequest";
|
|
410
|
+
const _LCBRi = "ListConfigurationBundlesResponse";
|
|
411
|
+
const _LCBV = "ListConfigurationBundleVersions";
|
|
412
|
+
const _LCBVR = "ListConfigurationBundleVersionsRequest";
|
|
413
|
+
const _LCBVRi = "ListConfigurationBundleVersionsResponse";
|
|
370
414
|
const _LCI = "ListCodeInterpreters";
|
|
371
415
|
const _LCIR = "ListCodeInterpretersRequest";
|
|
372
416
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
@@ -376,7 +420,10 @@ const _LER = "ListEvaluatorsRequest";
|
|
|
376
420
|
const _LERi = "ListEvaluatorsResponse";
|
|
377
421
|
const _LG = "ListGateways";
|
|
378
422
|
const _LGR = "ListGatewaysRequest";
|
|
423
|
+
const _LGRR = "ListGatewayRulesRequest";
|
|
424
|
+
const _LGRRi = "ListGatewayRulesResponse";
|
|
379
425
|
const _LGRi = "ListGatewaysResponse";
|
|
426
|
+
const _LGRis = "ListGatewayRules";
|
|
380
427
|
const _LGT = "ListGatewayTargets";
|
|
381
428
|
const _LGTR = "ListGatewayTargetsRequest";
|
|
382
429
|
const _LGTRi = "ListGatewayTargetsResponse";
|
|
@@ -434,6 +481,10 @@ const _MMSI = "ModifyMemoryStrategyInput";
|
|
|
434
481
|
const _MMSL = "ModifyMemoryStrategiesList";
|
|
435
482
|
const _MOPCI = "MicrosoftOauth2ProviderConfigInput";
|
|
436
483
|
const _MOPCO = "MicrosoftOauth2ProviderConfigOutput";
|
|
484
|
+
const _MP = "MatchPaths";
|
|
485
|
+
const _MPE = "MatchPrincipalEntries";
|
|
486
|
+
const _MPEa = "MatchPrincipalEntry";
|
|
487
|
+
const _MPa = "MatchPrincipals";
|
|
437
488
|
const _MRC = "ModifyReflectionConfiguration";
|
|
438
489
|
const _MRD = "ManagedResourceDetails";
|
|
439
490
|
const _MS = "MemoryStrategy";
|
|
@@ -501,6 +552,8 @@ const _RRSL = "RegistryRecordSummaryList";
|
|
|
501
552
|
const _RS = "RegistrySummary";
|
|
502
553
|
const _RSL = "RegistrySummaryList";
|
|
503
554
|
const _RSa = "RatingScale";
|
|
555
|
+
const _RTC = "RuntimeTargetConfiguration";
|
|
556
|
+
const _RTTA = "RouteToTargetAction";
|
|
504
557
|
const _Re = "Resource";
|
|
505
558
|
const _S = "Secret";
|
|
506
559
|
const _SC = "S3Configuration";
|
|
@@ -523,6 +576,7 @@ const _SGTR = "SynchronizeGatewayTargetsRequest";
|
|
|
523
576
|
const _SGTRy = "SynchronizeGatewayTargetsResponse";
|
|
524
577
|
const _SJ = "SensitiveJson";
|
|
525
578
|
const _SL = "S3Location";
|
|
579
|
+
const _SMB = "SystemManagedBlock";
|
|
526
580
|
const _SMC = "SelfManagedConfiguration";
|
|
527
581
|
const _SMCI = "SelfManagedConfigurationInput";
|
|
528
582
|
const _SMD = "SkillMdDefinition";
|
|
@@ -530,6 +584,7 @@ const _SML = "SecretsManagerLocation";
|
|
|
530
584
|
const _SMLR = "SelfManagedLatticeResource";
|
|
531
585
|
const _SMSI = "SemanticMemoryStrategyInput";
|
|
532
586
|
const _SMSIu = "SummaryMemoryStrategyInput";
|
|
587
|
+
const _SO = "StaticOverride";
|
|
533
588
|
const _SOCCI = "SemanticOverrideConsolidationConfigurationInput";
|
|
534
589
|
const _SOCCIu = "SummaryOverrideConsolidationConfigurationInput";
|
|
535
590
|
const _SOCI = "SemanticOverrideConfigurationInput";
|
|
@@ -544,6 +599,7 @@ const _SPG = "StartPolicyGeneration";
|
|
|
544
599
|
const _SPGR = "StartPolicyGenerationRequest";
|
|
545
600
|
const _SPGRt = "StartPolicyGenerationResponse";
|
|
546
601
|
const _SQEE = "ServiceQuotaExceededException";
|
|
602
|
+
const _SR = "StaticRoute";
|
|
547
603
|
const _SRRFA = "SubmitRegistryRecordForApproval";
|
|
548
604
|
const _SRRFAR = "SubmitRegistryRecordForApprovalRequest";
|
|
549
605
|
const _SRRFARu = "SubmitRegistryRecordForApprovalResponse";
|
|
@@ -572,8 +628,12 @@ const _TR = "TagResource";
|
|
|
572
628
|
const _TRR = "TagResourceRequest";
|
|
573
629
|
const _TRRa = "TagResourceResponse";
|
|
574
630
|
const _TS = "TargetSummary";
|
|
631
|
+
const _TSE = "TrafficSplitEntry";
|
|
632
|
+
const _TSEr = "TrafficSplitEntries";
|
|
575
633
|
const _TSa = "TargetSummaries";
|
|
576
634
|
const _TSo = "ToolSchema";
|
|
635
|
+
const _TTSE = "TargetTrafficSplitEntry";
|
|
636
|
+
const _TTSEa = "TargetTrafficSplitEntries";
|
|
577
637
|
const _UAC = "UpdatedApprovalConfiguration";
|
|
578
638
|
const _UACp = "UpdatedAuthorizerConfiguration";
|
|
579
639
|
const _UAD = "UpdatedA2aDescriptor";
|
|
@@ -588,6 +648,9 @@ const _UARR = "UpdateAgentRuntimeRequest";
|
|
|
588
648
|
const _UARRp = "UpdateAgentRuntimeResponse";
|
|
589
649
|
const _UASD = "UpdatedAgentSkillsDescriptor";
|
|
590
650
|
const _UASDF = "UpdatedAgentSkillsDescriptorFields";
|
|
651
|
+
const _UCB = "UpdateConfigurationBundle";
|
|
652
|
+
const _UCBR = "UpdateConfigurationBundleRequest";
|
|
653
|
+
const _UCBRp = "UpdateConfigurationBundleResponse";
|
|
591
654
|
const _UCD = "UpdatedCustomDescriptor";
|
|
592
655
|
const _UD = "UpdatedDescription";
|
|
593
656
|
const _UDU = "UpdatedDescriptorsUnion";
|
|
@@ -598,7 +661,10 @@ const _UERp = "UpdateEvaluatorResponse";
|
|
|
598
661
|
const _UEp = "UpdateEvaluator";
|
|
599
662
|
const _UG = "UpdateGateway";
|
|
600
663
|
const _UGR = "UpdateGatewayRequest";
|
|
664
|
+
const _UGRR = "UpdateGatewayRuleRequest";
|
|
665
|
+
const _UGRRp = "UpdateGatewayRuleResponse";
|
|
601
666
|
const _UGRp = "UpdateGatewayResponse";
|
|
667
|
+
const _UGRpd = "UpdateGatewayRule";
|
|
602
668
|
const _UGT = "UpdateGatewayTarget";
|
|
603
669
|
const _UGTR = "UpdateGatewayTargetRequest";
|
|
604
670
|
const _UGTRp = "UpdateGatewayTargetResponse";
|
|
@@ -652,13 +718,18 @@ const _UWI = "UpdateWorkloadIdentity";
|
|
|
652
718
|
const _UWIR = "UpdateWorkloadIdentityRequest";
|
|
653
719
|
const _UWIRp = "UpdateWorkloadIdentityResponse";
|
|
654
720
|
const _VC = "VpcConfig";
|
|
721
|
+
const _VCBS = "VersionCreatedBySource";
|
|
655
722
|
const _VE = "ValidationException";
|
|
656
723
|
const _VEF = "ValidationExceptionField";
|
|
657
724
|
const _VEFL = "ValidationExceptionFieldList";
|
|
725
|
+
const _VF = "VersionFilter";
|
|
726
|
+
const _VLM = "VersionLineageMetadata";
|
|
658
727
|
const _WID = "WorkloadIdentityDetails";
|
|
659
728
|
const _WIL = "WorkloadIdentityList";
|
|
660
729
|
const _WIT = "WorkloadIdentityType";
|
|
661
|
-
const
|
|
730
|
+
const _WO = "WeightedOverride";
|
|
731
|
+
const _WR = "WeightedRoute";
|
|
732
|
+
const _a = "actions";
|
|
662
733
|
const _aA = "autoApproval";
|
|
663
734
|
const _aAl = "allowedAudience";
|
|
664
735
|
const _aC = "agentCard";
|
|
@@ -683,6 +754,7 @@ const _aKCP = "apiKeyCredentialProvider";
|
|
|
683
754
|
const _aKSA = "apiKeySecretArn";
|
|
684
755
|
const _aMRF = "additionalModelRequestFields";
|
|
685
756
|
const _aMS = "addMemoryStrategies";
|
|
757
|
+
const _aO = "anyOf";
|
|
686
758
|
const _aOPC = "atlassianOauth2ProviderConfig";
|
|
687
759
|
const _aQP = "allowedQueryParameters";
|
|
688
760
|
const _aR = "agentRuntimes";
|
|
@@ -695,6 +767,7 @@ const _aRI = "agentRuntimeId";
|
|
|
695
767
|
const _aRN = "agentRuntimeName";
|
|
696
768
|
const _aRORU = "allowedResourceOauth2ReturnUrls";
|
|
697
769
|
const _aRV = "agentRuntimeVersion";
|
|
770
|
+
const _aRg = "agentcoreRuntime";
|
|
698
771
|
const _aS = "allowedScopes";
|
|
699
772
|
const _aSM = "authorizationServerMetadata";
|
|
700
773
|
const _aSg = "agentSkills";
|
|
@@ -702,19 +775,29 @@ const _aT = "authorizerType";
|
|
|
702
775
|
const _aTP = "appendToPrompt";
|
|
703
776
|
const _aTl = "allowedTools";
|
|
704
777
|
const _aU = "authorizationUrl";
|
|
778
|
+
const _aa = "a2a";
|
|
705
779
|
const _ar = "arn";
|
|
706
|
-
const _b = "
|
|
780
|
+
const _b = "bundles";
|
|
707
781
|
const _bA = "browserArn";
|
|
782
|
+
const _bAu = "bundleArn";
|
|
708
783
|
const _bEMC = "bedrockEvaluatorModelConfig";
|
|
709
784
|
const _bI = "browserId";
|
|
785
|
+
const _bIu = "bundleId";
|
|
710
786
|
const _bMC = "bedrockModelConfig";
|
|
787
|
+
const _bN = "bundleName";
|
|
788
|
+
const _bNr = "branchName";
|
|
711
789
|
const _bOAI = "bucketOwnerAccountId";
|
|
712
790
|
const _bS = "browserSigning";
|
|
713
791
|
const _bSr = "browserSummaries";
|
|
714
|
-
const _bV = "
|
|
792
|
+
const _bV = "bundleVersion";
|
|
793
|
+
const _bVo = "booleanValue";
|
|
794
|
+
const _bu = "bucket";
|
|
715
795
|
const _c = "client";
|
|
716
796
|
const _cA = "createdAt";
|
|
717
|
-
const _cB = "
|
|
797
|
+
const _cB = "createdBy";
|
|
798
|
+
const _cBN = "createdByName";
|
|
799
|
+
const _cBo = "configurationBundle";
|
|
800
|
+
const _cBod = "codeBased";
|
|
718
801
|
const _cC = "customClaims";
|
|
719
802
|
const _cCC = "customConsolidationConfiguration";
|
|
720
803
|
const _cCo = "contentConfigurations";
|
|
@@ -727,6 +810,7 @@ const _cII = "codeInterpreterId";
|
|
|
727
810
|
const _cIS = "codeInterpreterSummaries";
|
|
728
811
|
const _cJWTA = "customJWTAuthorizer";
|
|
729
812
|
const _cL = "credentialLocation";
|
|
813
|
+
const _cM = "commitMessage";
|
|
730
814
|
const _cMO = "claimMatchOperator";
|
|
731
815
|
const _cMS = "customMemoryStrategy";
|
|
732
816
|
const _cMV = "claimMatchValue";
|
|
@@ -753,7 +837,9 @@ const _ca = "categorical";
|
|
|
753
837
|
const _ce = "certificates";
|
|
754
838
|
const _ced = "cedar";
|
|
755
839
|
const _co = "code";
|
|
840
|
+
const _com = "components";
|
|
756
841
|
const _con = "configuration";
|
|
842
|
+
const _cond = "conditions";
|
|
757
843
|
const _conf = "config";
|
|
758
844
|
const _cons = "consolidation";
|
|
759
845
|
const _cont = "content";
|
|
@@ -805,13 +891,15 @@ const _fL = "fieldList";
|
|
|
805
891
|
const _fP = "filterPath";
|
|
806
892
|
const _fR = "failureReason";
|
|
807
893
|
const _fU = "fromUrl";
|
|
808
|
-
const _fi = "
|
|
894
|
+
const _fi = "filter";
|
|
895
|
+
const _fil = "filters";
|
|
809
896
|
const _gA = "gatewayArn";
|
|
810
897
|
const _gI = "gatewayId";
|
|
811
898
|
const _gIa = "gatewayIdentifier";
|
|
812
899
|
const _gMC = "geminiModelConfig";
|
|
813
900
|
const _gOPC = "googleOauth2ProviderConfig";
|
|
814
901
|
const _gOPCi = "githubOauth2ProviderConfig";
|
|
902
|
+
const _gR = "gatewayRules";
|
|
815
903
|
const _gT = "grantType";
|
|
816
904
|
const _gU = "gatewayUrl";
|
|
817
905
|
const _h = "harness";
|
|
@@ -830,9 +918,11 @@ const _iCn = "inferenceConfig";
|
|
|
830
918
|
const _iCnp = "inputConfiguration";
|
|
831
919
|
const _iCnt = "interceptorConfigurations";
|
|
832
920
|
const _iCnv = "invocationConfiguration";
|
|
921
|
+
const _iD = "includedData";
|
|
833
922
|
const _iF = "inlineFunction";
|
|
834
923
|
const _iOPC = "includedOauth2ProviderConfig";
|
|
835
924
|
const _iP = "interceptionPoints";
|
|
925
|
+
const _iPa = "iamPrincipal";
|
|
836
926
|
const _iPn = "inlinePayload";
|
|
837
927
|
const _iRST = "idleRuntimeSessionTimeout";
|
|
838
928
|
const _iS = "inputSchema";
|
|
@@ -857,9 +947,11 @@ const _lCa = "lambdaConfig";
|
|
|
857
947
|
const _lFM = "lockedForModification";
|
|
858
948
|
const _lGN = "logGroupNames";
|
|
859
949
|
const _lGNo = "logGroupName";
|
|
860
|
-
const _lM = "
|
|
950
|
+
const _lM = "lineageMetadata";
|
|
861
951
|
const _lMD = "lastModifiedDate";
|
|
952
|
+
const _lMi = "listingMode";
|
|
862
953
|
const _lOPC = "linkedinOauth2ProviderConfig";
|
|
954
|
+
const _lPB = "latestPerBranch";
|
|
863
955
|
const _lSA = "lastSavedAt";
|
|
864
956
|
const _lSAa = "lastSynchronizedAt";
|
|
865
957
|
const _lSBI = "lastSavedBrowserId";
|
|
@@ -872,6 +964,7 @@ const _la = "label";
|
|
|
872
964
|
const _lam = "lambda";
|
|
873
965
|
const _le = "level";
|
|
874
966
|
const _m = "message";
|
|
967
|
+
const _mB = "managedBy";
|
|
875
968
|
const _mBT = "messageBasedTrigger";
|
|
876
969
|
const _mC = "metadataConfiguration";
|
|
877
970
|
const _mCe = "messagesCount";
|
|
@@ -885,6 +978,8 @@ const _mL = "maxLifetime";
|
|
|
885
978
|
const _mMS = "modifyMemoryStrategies";
|
|
886
979
|
const _mOPC = "microsoftOauth2ProviderConfig";
|
|
887
980
|
const _mP = "mountPath";
|
|
981
|
+
const _mPa = "matchPrincipals";
|
|
982
|
+
const _mPat = "matchPaths";
|
|
888
983
|
const _mR = "maxResults";
|
|
889
984
|
const _mS = "memoryStrategies";
|
|
890
985
|
const _mSI = "memoryStrategyId";
|
|
@@ -899,6 +994,7 @@ const _me = "methods";
|
|
|
899
994
|
const _mem = "memory";
|
|
900
995
|
const _memo = "memories";
|
|
901
996
|
const _met = "method";
|
|
997
|
+
const _meta = "metadata";
|
|
902
998
|
const _mo = "model";
|
|
903
999
|
const _mod = "mode";
|
|
904
1000
|
const _n = "name";
|
|
@@ -953,10 +1049,13 @@ const _pRM = "preserveRecentMessages";
|
|
|
953
1049
|
const _pS = "profileSummaries";
|
|
954
1050
|
const _pT = "protocolType";
|
|
955
1051
|
const _pV = "protocolVersion";
|
|
1052
|
+
const _pVI = "parentVersionIds";
|
|
956
1053
|
const _po = "policy";
|
|
957
1054
|
const _pol = "policies";
|
|
958
|
-
const _pr = "
|
|
1055
|
+
const _pr = "priority";
|
|
1056
|
+
const _pre = "prefix";
|
|
959
1057
|
const _pro = "properties";
|
|
1058
|
+
const _q = "qualifier";
|
|
960
1059
|
const _r = "reason";
|
|
961
1060
|
const _rA = "roleArn";
|
|
962
1061
|
const _rAA = "resourceAssociationArn";
|
|
@@ -972,8 +1071,9 @@ const _rE = "runtimeEndpoints";
|
|
|
972
1071
|
const _rGA = "resourceGatewayArn";
|
|
973
1072
|
const _rHA = "requestHeaderAllowlist";
|
|
974
1073
|
const _rHC = "requestHeaderConfiguration";
|
|
975
|
-
const _rI = "
|
|
976
|
-
const _rIe = "
|
|
1074
|
+
const _rI = "ruleId";
|
|
1075
|
+
const _rIe = "registryId";
|
|
1076
|
+
const _rIec = "recordId";
|
|
977
1077
|
const _rM = "remoteMcp";
|
|
978
1078
|
const _rMMDSV = "requireMMDSV2";
|
|
979
1079
|
const _rP = "resourcePriority";
|
|
@@ -982,6 +1082,7 @@ const _rS = "relevanceScore";
|
|
|
982
1082
|
const _rSa = "ratingScale";
|
|
983
1083
|
const _rT = "responseTypes";
|
|
984
1084
|
const _rTF = "rawTextFragment";
|
|
1085
|
+
const _rTT = "routeToTarget";
|
|
985
1086
|
const _rTa = "rawText";
|
|
986
1087
|
const _rV = "recordVersion";
|
|
987
1088
|
const _re = "recording";
|
|
@@ -1016,15 +1117,17 @@ const _sMSu = "summaryMemoryStrategy";
|
|
|
1016
1117
|
const _sMe = "secretsManager";
|
|
1017
1118
|
const _sMm = "smithyModel";
|
|
1018
1119
|
const _sN = "serviceNames";
|
|
1019
|
-
const _sO = "
|
|
1120
|
+
const _sO = "staticOverride";
|
|
1020
1121
|
const _sOPC = "slackOauth2ProviderConfig";
|
|
1021
1122
|
const _sOPCa = "salesforceOauth2ProviderConfig";
|
|
1123
|
+
const _sOe = "semanticOverride";
|
|
1022
1124
|
const _sOu = "summaryOverride";
|
|
1023
1125
|
const _sP = "systemPrompt";
|
|
1024
1126
|
const _sPa = "samplingPercentage";
|
|
1025
1127
|
const _sPe = "serverProtocol";
|
|
1026
1128
|
const _sR = "statusReasons";
|
|
1027
1129
|
const _sRt = "statusReason";
|
|
1130
|
+
const _sRta = "staticRoute";
|
|
1028
1131
|
const _sRu = "summaryRatio";
|
|
1029
1132
|
const _sS = "stopSequences";
|
|
1030
1133
|
const _sSP = "summarizationSystemPrompt";
|
|
@@ -1048,6 +1151,7 @@ const _str = "strategy";
|
|
|
1048
1151
|
const _stra = "strategies";
|
|
1049
1152
|
const _su = "subnets";
|
|
1050
1153
|
const _sum = "summarization";
|
|
1154
|
+
const _sy = "system";
|
|
1051
1155
|
const _t = "type";
|
|
1052
1156
|
const _tA = "topicArn";
|
|
1053
1157
|
const _tBT = "tokenBasedTrigger";
|
|
@@ -1063,12 +1167,14 @@ const _tIL = "targetIdList";
|
|
|
1063
1167
|
const _tIe = "tenantId";
|
|
1064
1168
|
const _tK = "topK";
|
|
1065
1169
|
const _tKa = "tagKeys";
|
|
1170
|
+
const _tN = "targetName";
|
|
1066
1171
|
const _tO = "toolOverrides";
|
|
1067
1172
|
const _tP = "topP";
|
|
1068
1173
|
const _tRS = "targetResourceScope";
|
|
1069
1174
|
const _tS = "timeoutSeconds";
|
|
1070
1175
|
const _tSo = "toolSchema";
|
|
1071
1176
|
const _tSr = "triggerSynchronization";
|
|
1177
|
+
const _tSra = "trafficSplit";
|
|
1072
1178
|
const _tV = "targetVersion";
|
|
1073
1179
|
const _tVI = "tokenVaultId";
|
|
1074
1180
|
const _ta = "tags";
|
|
@@ -1087,14 +1193,19 @@ const _uPO = "userPreferenceOverride";
|
|
|
1087
1193
|
const _ur = "uri";
|
|
1088
1194
|
const _v = "value";
|
|
1089
1195
|
const _vC = "vpcConfig";
|
|
1090
|
-
const
|
|
1091
|
-
const
|
|
1196
|
+
const _vCA = "versionCreatedAt";
|
|
1197
|
+
const _vI = "versionId";
|
|
1198
|
+
const _vIp = "vpcIdentifier";
|
|
1092
1199
|
const _vM = "validationMode";
|
|
1093
1200
|
const _ve = "version";
|
|
1201
|
+
const _ver = "versions";
|
|
1094
1202
|
const _vi = "view";
|
|
1203
|
+
const _w = "weight";
|
|
1095
1204
|
const _wI = "workloadIdentities";
|
|
1096
1205
|
const _wIA = "workloadIdentityArn";
|
|
1097
1206
|
const _wID = "workloadIdentityDetails";
|
|
1207
|
+
const _wO = "weightedOverride";
|
|
1208
|
+
const _wR = "weightedRoute";
|
|
1098
1209
|
const n0 = "com.amazonaws.bedrockagentcorecontrol";
|
|
1099
1210
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
1100
1211
|
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
@@ -1193,6 +1304,7 @@ export const errorTypeRegistries = [
|
|
|
1193
1304
|
];
|
|
1194
1305
|
var ApiKeyType = [0, n0, _AKT, 8, 0];
|
|
1195
1306
|
var ClientSecretType = [0, n0, _CST, 8, 0];
|
|
1307
|
+
var ConfigurationBundleDescription = [0, n0, _CBD, 8, 0];
|
|
1196
1308
|
var Description = [0, n0, _D, 8, 0];
|
|
1197
1309
|
var EndpointName = [0, n0, _EN, 8, 0];
|
|
1198
1310
|
var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
|
|
@@ -1354,12 +1466,32 @@ export var CodeInterpreterSummary$ = [3, n0, _CIS,
|
|
|
1354
1466
|
[_cII, _cIA, _st, _cA, _n, _d, _lUA],
|
|
1355
1467
|
[0, 0, 0, 5, 0, [() => Description, 0], 5], 4
|
|
1356
1468
|
];
|
|
1357
|
-
export var
|
|
1469
|
+
export var ComponentConfiguration$ = [3, n0, _CCo,
|
|
1470
|
+
8,
|
|
1471
|
+
[_con],
|
|
1472
|
+
[15], 1
|
|
1473
|
+
];
|
|
1474
|
+
export var ConfigurationBundleReference$ = [3, n0, _CBR,
|
|
1475
|
+
0,
|
|
1476
|
+
[_bAu, _bV],
|
|
1477
|
+
[0, 0], 2
|
|
1478
|
+
];
|
|
1479
|
+
export var ConfigurationBundleSummary$ = [3, n0, _CBS,
|
|
1480
|
+
0,
|
|
1481
|
+
[_bAu, _bIu, _bN, _d],
|
|
1482
|
+
[0, 0, 0, [() => ConfigurationBundleDescription, 0]], 3
|
|
1483
|
+
];
|
|
1484
|
+
export var ConfigurationBundleVersionSummary$ = [3, n0, _CBVS,
|
|
1485
|
+
0,
|
|
1486
|
+
[_bAu, _bIu, _vI, _vCA, _lM],
|
|
1487
|
+
[0, 0, 0, 4, () => VersionLineageMetadata$], 4
|
|
1488
|
+
];
|
|
1489
|
+
export var ContainerConfiguration$ = [3, n0, _CCon,
|
|
1358
1490
|
0,
|
|
1359
1491
|
[_cU],
|
|
1360
1492
|
[0], 1
|
|
1361
1493
|
];
|
|
1362
|
-
export var ContentConfiguration$ = [3, n0,
|
|
1494
|
+
export var ContentConfiguration$ = [3, n0, _CCont,
|
|
1363
1495
|
0,
|
|
1364
1496
|
[_t, _le],
|
|
1365
1497
|
[0, 0], 1
|
|
@@ -1404,12 +1536,12 @@ export var CreateBrowserProfileResponse$ = [3, n0, _CBPRr,
|
|
|
1404
1536
|
[_pI, _pA, _cA, _st],
|
|
1405
1537
|
[0, 0, 5, 0], 4
|
|
1406
1538
|
];
|
|
1407
|
-
export var CreateBrowserRequest$ = [3, n0,
|
|
1539
|
+
export var CreateBrowserRequest$ = [3, n0, _CBRr,
|
|
1408
1540
|
0,
|
|
1409
1541
|
[_n, _nC, _d, _eRA, _re, _bS, _ePn, _ce, _cTl, _ta],
|
|
1410
1542
|
[0, () => BrowserNetworkConfiguration$, [() => Description, 0], 0, () => RecordingConfig$, () => BrowserSigningConfigInput$, () => BrowserEnterprisePolicies, () => Certificates, [0, 4], 128 | 0], 2
|
|
1411
1543
|
];
|
|
1412
|
-
export var CreateBrowserResponse$ = [3, n0,
|
|
1544
|
+
export var CreateBrowserResponse$ = [3, n0, _CBRre,
|
|
1413
1545
|
0,
|
|
1414
1546
|
[_bI, _bA, _cA, _st],
|
|
1415
1547
|
[0, 0, 5, 0], 4
|
|
@@ -1424,10 +1556,20 @@ export var CreateCodeInterpreterResponse$ = [3, n0, _CCIRr,
|
|
|
1424
1556
|
[_cII, _cIA, _cA, _st],
|
|
1425
1557
|
[0, 0, 5, 0], 4
|
|
1426
1558
|
];
|
|
1559
|
+
export var CreateConfigurationBundleRequest$ = [3, n0, _CCBR,
|
|
1560
|
+
0,
|
|
1561
|
+
[_bN, _com, _cTl, _d, _bNr, _cM, _cB, _ta],
|
|
1562
|
+
[0, [() => ComponentConfigurationMap, 0], [0, 4], [() => ConfigurationBundleDescription, 0], 0, 0, () => VersionCreatedBySource$, 128 | 0], 2
|
|
1563
|
+
];
|
|
1564
|
+
export var CreateConfigurationBundleResponse$ = [3, n0, _CCBRr,
|
|
1565
|
+
0,
|
|
1566
|
+
[_bAu, _bIu, _vI, _cA],
|
|
1567
|
+
[0, 0, 0, 4], 4
|
|
1568
|
+
];
|
|
1427
1569
|
export var CreateEvaluatorRequest$ = [3, n0, _CER,
|
|
1428
1570
|
0,
|
|
1429
|
-
[_eNv, _eC, _le, _cTl, _d, _ta],
|
|
1430
|
-
[0, [() => EvaluatorConfig$, 0], 0, [0, 4], [() => EvaluatorDescription, 0], 128 | 0], 3
|
|
1571
|
+
[_eNv, _eC, _le, _cTl, _d, _kKA, _ta],
|
|
1572
|
+
[0, [() => EvaluatorConfig$, 0], 0, [0, 4], [() => EvaluatorDescription, 0], 0, 128 | 0], 3
|
|
1431
1573
|
];
|
|
1432
1574
|
export var CreateEvaluatorResponse$ = [3, n0, _CERr,
|
|
1433
1575
|
0,
|
|
@@ -1436,13 +1578,23 @@ export var CreateEvaluatorResponse$ = [3, n0, _CERr,
|
|
|
1436
1578
|
];
|
|
1437
1579
|
export var CreateGatewayRequest$ = [3, n0, _CGR,
|
|
1438
1580
|
0,
|
|
1439
|
-
[_n, _rA,
|
|
1440
|
-
[[() => GatewayName, 0], 0, 0,
|
|
1581
|
+
[_n, _rA, _aT, _d, _cTl, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL, _ta],
|
|
1582
|
+
[[() => GatewayName, 0], 0, 0, [() => GatewayDescription, 0], [0, 4], 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0, 128 | 0], 3
|
|
1441
1583
|
];
|
|
1442
1584
|
export var CreateGatewayResponse$ = [3, n0, _CGRr,
|
|
1443
1585
|
0,
|
|
1444
|
-
[_gA, _gI, _cA, _uA, _st, _n,
|
|
1445
|
-
[0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0,
|
|
1586
|
+
[_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
|
|
1587
|
+
[0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 7
|
|
1588
|
+
];
|
|
1589
|
+
export var CreateGatewayRuleRequest$ = [3, n0, _CGRR,
|
|
1590
|
+
0,
|
|
1591
|
+
[_gIa, _pr, _a, _cTl, _cond, _d],
|
|
1592
|
+
[[0, 1], 1, [() => Actions, 0], [0, 4], () => Conditions, 0], 3
|
|
1593
|
+
];
|
|
1594
|
+
export var CreateGatewayRuleResponse$ = [3, n0, _CGRRr,
|
|
1595
|
+
0,
|
|
1596
|
+
[_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy],
|
|
1597
|
+
[0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => SystemManagedBlock$], 6
|
|
1446
1598
|
];
|
|
1447
1599
|
export var CreateGatewayTargetRequest$ = [3, n0, _CGTR,
|
|
1448
1600
|
0,
|
|
@@ -1451,8 +1603,8 @@ export var CreateGatewayTargetRequest$ = [3, n0, _CGTR,
|
|
|
1451
1603
|
];
|
|
1452
1604
|
export var CreateGatewayTargetResponse$ = [3, n0, _CGTRr,
|
|
1453
1605
|
0,
|
|
1454
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
|
|
1455
|
-
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData
|
|
1606
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
1607
|
+
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
1456
1608
|
];
|
|
1457
1609
|
export var CreateHarnessRequest$ = [3, n0, _CHR,
|
|
1458
1610
|
0,
|
|
@@ -1516,7 +1668,7 @@ export var CreatePolicyResponse$ = [3, n0, _CPRr,
|
|
|
1516
1668
|
];
|
|
1517
1669
|
export var CreateRegistryRecordRequest$ = [3, n0, _CRRR,
|
|
1518
1670
|
0,
|
|
1519
|
-
[
|
|
1671
|
+
[_rIe, _n, _dT, _d, _des, _rV, _sT, _sC, _cTl],
|
|
1520
1672
|
[[0, 1], 0, 0, [() => Description, 0], () => Descriptors$, 0, 0, () => SynchronizationConfiguration$, [0, 4]], 3
|
|
1521
1673
|
];
|
|
1522
1674
|
export var CreateRegistryRecordResponse$ = [3, n0, _CRRRr,
|
|
@@ -1639,6 +1791,16 @@ export var DeleteCodeInterpreterResponse$ = [3, n0, _DCIRe,
|
|
|
1639
1791
|
[_cII, _st, _lUA],
|
|
1640
1792
|
[0, 0, 5], 3
|
|
1641
1793
|
];
|
|
1794
|
+
export var DeleteConfigurationBundleRequest$ = [3, n0, _DCBR,
|
|
1795
|
+
0,
|
|
1796
|
+
[_bIu],
|
|
1797
|
+
[[0, 1]], 1
|
|
1798
|
+
];
|
|
1799
|
+
export var DeleteConfigurationBundleResponse$ = [3, n0, _DCBRe,
|
|
1800
|
+
0,
|
|
1801
|
+
[_bIu, _st],
|
|
1802
|
+
[0, 0], 2
|
|
1803
|
+
];
|
|
1642
1804
|
export var DeleteEvaluatorRequest$ = [3, n0, _DER,
|
|
1643
1805
|
0,
|
|
1644
1806
|
[_eI],
|
|
@@ -1659,6 +1821,16 @@ export var DeleteGatewayResponse$ = [3, n0, _DGRe,
|
|
|
1659
1821
|
[_gI, _st, _sR],
|
|
1660
1822
|
[0, 0, 64 | 0], 2
|
|
1661
1823
|
];
|
|
1824
|
+
export var DeleteGatewayRuleRequest$ = [3, n0, _DGRR,
|
|
1825
|
+
0,
|
|
1826
|
+
[_gIa, _rI],
|
|
1827
|
+
[[0, 1], [0, 1]], 2
|
|
1828
|
+
];
|
|
1829
|
+
export var DeleteGatewayRuleResponse$ = [3, n0, _DGRRe,
|
|
1830
|
+
0,
|
|
1831
|
+
[_rI, _st],
|
|
1832
|
+
[0, 0], 2
|
|
1833
|
+
];
|
|
1662
1834
|
export var DeleteGatewayTargetRequest$ = [3, n0, _DGTR,
|
|
1663
1835
|
0,
|
|
1664
1836
|
[_gIa, _tI],
|
|
@@ -1736,7 +1908,7 @@ export var DeletePolicyResponse$ = [3, n0, _DPRe,
|
|
|
1736
1908
|
];
|
|
1737
1909
|
export var DeleteRegistryRecordRequest$ = [3, n0, _DRRR,
|
|
1738
1910
|
0,
|
|
1739
|
-
[
|
|
1911
|
+
[_rIe, _rIec],
|
|
1740
1912
|
[[0, 1], [0, 1]], 2
|
|
1741
1913
|
];
|
|
1742
1914
|
export var DeleteRegistryRecordResponse$ = [3, n0, _DRRRe,
|
|
@@ -1746,7 +1918,7 @@ export var DeleteRegistryRecordResponse$ = [3, n0, _DRRRe,
|
|
|
1746
1918
|
];
|
|
1747
1919
|
export var DeleteRegistryRequest$ = [3, n0, _DRR,
|
|
1748
1920
|
0,
|
|
1749
|
-
[
|
|
1921
|
+
[_rIe],
|
|
1750
1922
|
[[0, 1]], 1
|
|
1751
1923
|
];
|
|
1752
1924
|
export var DeleteRegistryResponse$ = [3, n0, _DRRe,
|
|
@@ -1776,7 +1948,7 @@ export var DeleteWorkloadIdentityResponse$ = [3, n0, _DWIRe,
|
|
|
1776
1948
|
];
|
|
1777
1949
|
export var Descriptors$ = [3, n0, _De,
|
|
1778
1950
|
0,
|
|
1779
|
-
[_mc,
|
|
1951
|
+
[_mc, _aa, _cu, _aSg],
|
|
1780
1952
|
[() => McpDescriptor$, () => A2aDescriptor$, () => CustomDescriptor$, () => AgentSkillsDescriptor$]
|
|
1781
1953
|
];
|
|
1782
1954
|
export var EpisodicConsolidationOverride$ = [3, n0, _ECO,
|
|
@@ -1831,8 +2003,8 @@ export var EpisodicReflectionOverride$ = [3, n0, _ERO,
|
|
|
1831
2003
|
];
|
|
1832
2004
|
export var EvaluatorSummary$ = [3, n0, _ES,
|
|
1833
2005
|
0,
|
|
1834
|
-
[_eA, _eI, _eNv, _eT, _st, _cA, _uA, _d, _le, _lFM],
|
|
1835
|
-
[0, 0, 0, 0, 0, 4, 4, [() => EvaluatorDescription, 0], 0, 2], 7
|
|
2006
|
+
[_eA, _eI, _eNv, _eT, _st, _cA, _uA, _d, _le, _lFM, _kKA],
|
|
2007
|
+
[0, 0, 0, 0, 0, 4, 4, [() => EvaluatorDescription, 0], 0, 2, 0], 7
|
|
1836
2008
|
];
|
|
1837
2009
|
export var Filter$ = [3, n0, _F,
|
|
1838
2010
|
0,
|
|
@@ -1864,15 +2036,20 @@ export var GatewayPolicyEngineConfiguration$ = [3, n0, _GPEC,
|
|
|
1864
2036
|
[_ar, _mod],
|
|
1865
2037
|
[0, 0], 2
|
|
1866
2038
|
];
|
|
2039
|
+
export var GatewayRuleDetail$ = [3, n0, _GRD,
|
|
2040
|
+
0,
|
|
2041
|
+
[_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
|
|
2042
|
+
[0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => SystemManagedBlock$, 5], 6
|
|
2043
|
+
];
|
|
1867
2044
|
export var GatewaySummary$ = [3, n0, _GS,
|
|
1868
2045
|
0,
|
|
1869
|
-
[_gI, _n, _st, _cA, _uA, _aT,
|
|
1870
|
-
[0, [() => GatewayName, 0], 0, 5, 5, 0,
|
|
2046
|
+
[_gI, _n, _st, _cA, _uA, _aT, _d, _pT],
|
|
2047
|
+
[0, [() => GatewayName, 0], 0, 5, 5, 0, [() => GatewayDescription, 0], 0], 6
|
|
1871
2048
|
];
|
|
1872
2049
|
export var GatewayTarget$ = [3, n0, _GT,
|
|
1873
2050
|
0,
|
|
1874
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
|
|
1875
|
-
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData
|
|
2051
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
2052
|
+
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
1876
2053
|
];
|
|
1877
2054
|
export var GetAgentRuntimeEndpointRequest$ = [3, n0, _GARER,
|
|
1878
2055
|
0,
|
|
@@ -1934,15 +2111,35 @@ export var GetCodeInterpreterResponse$ = [3, n0, _GCIRe,
|
|
|
1934
2111
|
[_cII, _cIA, _n, _nC, _st, _cA, _lUA, _d, _eRA, _ce, _fR],
|
|
1935
2112
|
[0, 0, 0, () => CodeInterpreterNetworkConfiguration$, 0, 5, 5, [() => Description, 0], 0, () => Certificates, 0], 7
|
|
1936
2113
|
];
|
|
2114
|
+
export var GetConfigurationBundleRequest$ = [3, n0, _GCBR,
|
|
2115
|
+
0,
|
|
2116
|
+
[_bIu, _bNr],
|
|
2117
|
+
[[0, 1], [0, { [_hQ]: _bNr }]], 1
|
|
2118
|
+
];
|
|
2119
|
+
export var GetConfigurationBundleResponse$ = [3, n0, _GCBRe,
|
|
2120
|
+
0,
|
|
2121
|
+
[_bAu, _bIu, _bN, _vI, _com, _cA, _uA, _d, _lM],
|
|
2122
|
+
[0, 0, 0, 0, [() => ComponentConfigurationMap, 0], 4, 4, [() => ConfigurationBundleDescription, 0], () => VersionLineageMetadata$], 7
|
|
2123
|
+
];
|
|
2124
|
+
export var GetConfigurationBundleVersionRequest$ = [3, n0, _GCBVR,
|
|
2125
|
+
0,
|
|
2126
|
+
[_bIu, _vI],
|
|
2127
|
+
[[0, 1], [0, 1]], 2
|
|
2128
|
+
];
|
|
2129
|
+
export var GetConfigurationBundleVersionResponse$ = [3, n0, _GCBVRe,
|
|
2130
|
+
0,
|
|
2131
|
+
[_bAu, _bIu, _bN, _vI, _com, _cA, _vCA, _d, _lM],
|
|
2132
|
+
[0, 0, 0, 0, [() => ComponentConfigurationMap, 0], 4, 4, [() => ConfigurationBundleDescription, 0], () => VersionLineageMetadata$], 7
|
|
2133
|
+
];
|
|
1937
2134
|
export var GetEvaluatorRequest$ = [3, n0, _GER,
|
|
1938
2135
|
0,
|
|
1939
|
-
[_eI],
|
|
1940
|
-
[[0, 1]], 1
|
|
2136
|
+
[_eI, _iD],
|
|
2137
|
+
[[0, 1], [0, { [_hQ]: _iD }]], 1
|
|
1941
2138
|
];
|
|
1942
2139
|
export var GetEvaluatorResponse$ = [3, n0, _GERe,
|
|
1943
2140
|
0,
|
|
1944
|
-
[_eA, _eI, _eNv, _eC, _le, _st, _cA, _uA, _d, _lFM],
|
|
1945
|
-
[0, 0, 0, [() => EvaluatorConfig$, 0], 0, 0, 4, 4, [() => EvaluatorDescription, 0], 2], 8
|
|
2141
|
+
[_eA, _eI, _eNv, _eC, _le, _st, _cA, _uA, _d, _lFM, _kKA],
|
|
2142
|
+
[0, 0, 0, [() => EvaluatorConfig$, 0], 0, 0, 4, 4, [() => EvaluatorDescription, 0], 2, 0], 8
|
|
1946
2143
|
];
|
|
1947
2144
|
export var GetGatewayRequest$ = [3, n0, _GGR,
|
|
1948
2145
|
0,
|
|
@@ -1951,8 +2148,18 @@ export var GetGatewayRequest$ = [3, n0, _GGR,
|
|
|
1951
2148
|
];
|
|
1952
2149
|
export var GetGatewayResponse$ = [3, n0, _GGRe,
|
|
1953
2150
|
0,
|
|
1954
|
-
[_gA, _gI, _cA, _uA, _st, _n,
|
|
1955
|
-
[0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0,
|
|
2151
|
+
[_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
|
|
2152
|
+
[0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 7
|
|
2153
|
+
];
|
|
2154
|
+
export var GetGatewayRuleRequest$ = [3, n0, _GGRR,
|
|
2155
|
+
0,
|
|
2156
|
+
[_gIa, _rI],
|
|
2157
|
+
[[0, 1], [0, 1]], 2
|
|
2158
|
+
];
|
|
2159
|
+
export var GetGatewayRuleResponse$ = [3, n0, _GGRRe,
|
|
2160
|
+
0,
|
|
2161
|
+
[_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
|
|
2162
|
+
[0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => SystemManagedBlock$, 5], 6
|
|
1956
2163
|
];
|
|
1957
2164
|
export var GetGatewayTargetRequest$ = [3, n0, _GGTR,
|
|
1958
2165
|
0,
|
|
@@ -1961,8 +2168,8 @@ export var GetGatewayTargetRequest$ = [3, n0, _GGTR,
|
|
|
1961
2168
|
];
|
|
1962
2169
|
export var GetGatewayTargetResponse$ = [3, n0, _GGTRe,
|
|
1963
2170
|
0,
|
|
1964
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
|
|
1965
|
-
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData
|
|
2171
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
2172
|
+
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
1966
2173
|
];
|
|
1967
2174
|
export var GetHarnessRequest$ = [3, n0, _GHR,
|
|
1968
2175
|
0,
|
|
@@ -2036,22 +2243,22 @@ export var GetPolicyResponse$ = [3, n0, _GPRe,
|
|
|
2036
2243
|
];
|
|
2037
2244
|
export var GetRegistryRecordRequest$ = [3, n0, _GRRR,
|
|
2038
2245
|
0,
|
|
2039
|
-
[
|
|
2246
|
+
[_rIe, _rIec],
|
|
2040
2247
|
[[0, 1], [0, 1]], 2
|
|
2041
2248
|
];
|
|
2042
2249
|
export var GetRegistryRecordResponse$ = [3, n0, _GRRRe,
|
|
2043
2250
|
0,
|
|
2044
|
-
[_rAeg, _rAe,
|
|
2251
|
+
[_rAeg, _rAe, _rIec, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
|
|
2045
2252
|
[0, 0, 0, 0, 0, () => Descriptors$, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => SynchronizationConfiguration$], 9
|
|
2046
2253
|
];
|
|
2047
2254
|
export var GetRegistryRequest$ = [3, n0, _GRR,
|
|
2048
2255
|
0,
|
|
2049
|
-
[
|
|
2256
|
+
[_rIe],
|
|
2050
2257
|
[[0, 1]], 1
|
|
2051
2258
|
];
|
|
2052
2259
|
export var GetRegistryResponse$ = [3, n0, _GRRe,
|
|
2053
2260
|
0,
|
|
2054
|
-
[_n,
|
|
2261
|
+
[_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
|
|
2055
2262
|
[0, 0, 0, 0, 5, 5, [() => Description, 0], 0, () => AuthorizerConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
2056
2263
|
];
|
|
2057
2264
|
export var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
@@ -2199,6 +2406,11 @@ export var IamCredentialProvider$ = [3, n0, _ICP,
|
|
|
2199
2406
|
[_ser, _reg],
|
|
2200
2407
|
[0, 0], 1
|
|
2201
2408
|
];
|
|
2409
|
+
export var IamPrincipal$ = [3, n0, _IPa,
|
|
2410
|
+
0,
|
|
2411
|
+
[_ar, _o],
|
|
2412
|
+
[0, 0], 1
|
|
2413
|
+
];
|
|
2202
2414
|
export var IncludedOauth2ProviderConfigInput$ = [3, n0, _IOPCI,
|
|
2203
2415
|
0,
|
|
2204
2416
|
[_cI, _cS, _is, _aE, _tE],
|
|
@@ -2334,6 +2546,26 @@ export var ListCodeInterpretersResponse$ = [3, n0, _LCIRi,
|
|
|
2334
2546
|
[_cIS, _nTe],
|
|
2335
2547
|
[[() => CodeInterpreterSummaries, 0], 0], 1
|
|
2336
2548
|
];
|
|
2549
|
+
export var ListConfigurationBundlesRequest$ = [3, n0, _LCBR,
|
|
2550
|
+
0,
|
|
2551
|
+
[_nTe, _mR],
|
|
2552
|
+
[[0, { [_hQ]: _nTe }], [1, { [_hQ]: _mR }]]
|
|
2553
|
+
];
|
|
2554
|
+
export var ListConfigurationBundlesResponse$ = [3, n0, _LCBRi,
|
|
2555
|
+
0,
|
|
2556
|
+
[_b, _nTe],
|
|
2557
|
+
[[() => ConfigurationBundleSummaryList, 0], 0], 1
|
|
2558
|
+
];
|
|
2559
|
+
export var ListConfigurationBundleVersionsRequest$ = [3, n0, _LCBVR,
|
|
2560
|
+
0,
|
|
2561
|
+
[_bIu, _nTe, _mR, _fi],
|
|
2562
|
+
[[0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mR }], () => VersionFilter$], 1
|
|
2563
|
+
];
|
|
2564
|
+
export var ListConfigurationBundleVersionsResponse$ = [3, n0, _LCBVRi,
|
|
2565
|
+
0,
|
|
2566
|
+
[_ver, _nTe],
|
|
2567
|
+
[() => ConfigurationBundleVersionSummaryList, 0], 1
|
|
2568
|
+
];
|
|
2337
2569
|
export var ListEvaluatorsRequest$ = [3, n0, _LER,
|
|
2338
2570
|
0,
|
|
2339
2571
|
[_nTe, _mR],
|
|
@@ -2344,6 +2576,16 @@ export var ListEvaluatorsResponse$ = [3, n0, _LERi,
|
|
|
2344
2576
|
[_ev, _nTe],
|
|
2345
2577
|
[[() => EvaluatorSummaryList, 0], 0], 1
|
|
2346
2578
|
];
|
|
2579
|
+
export var ListGatewayRulesRequest$ = [3, n0, _LGRR,
|
|
2580
|
+
0,
|
|
2581
|
+
[_gIa, _mR, _nTe],
|
|
2582
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
2583
|
+
];
|
|
2584
|
+
export var ListGatewayRulesResponse$ = [3, n0, _LGRRi,
|
|
2585
|
+
0,
|
|
2586
|
+
[_gR, _nTe],
|
|
2587
|
+
[[() => GatewayRules, 0], 0], 1
|
|
2588
|
+
];
|
|
2347
2589
|
export var ListGatewaysRequest$ = [3, n0, _LGR,
|
|
2348
2590
|
0,
|
|
2349
2591
|
[_mR, _nTe],
|
|
@@ -2456,7 +2698,7 @@ export var ListRegistriesResponse$ = [3, n0, _LRRi,
|
|
|
2456
2698
|
];
|
|
2457
2699
|
export var ListRegistryRecordsRequest$ = [3, n0, _LRRR,
|
|
2458
2700
|
0,
|
|
2459
|
-
[
|
|
2701
|
+
[_rIe, _mR, _nTe, _n, _st, _dT],
|
|
2460
2702
|
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }], [0, { [_hQ]: _n }], [0, { [_hQ]: _st }], [0, { [_hQ]: _dT }]], 1
|
|
2461
2703
|
];
|
|
2462
2704
|
export var ListRegistryRecordsResponse$ = [3, n0, _LRRRi,
|
|
@@ -2496,9 +2738,19 @@ export var ManagedResourceDetails$ = [3, n0, _MRD,
|
|
|
2496
2738
|
];
|
|
2497
2739
|
export var ManagedVpcResource$ = [3, n0, _MVR,
|
|
2498
2740
|
0,
|
|
2499
|
-
[
|
|
2741
|
+
[_vIp, _sIu, _eIAT, _sGI, _ta, _rD],
|
|
2500
2742
|
[0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
|
|
2501
2743
|
];
|
|
2744
|
+
export var MatchPaths$ = [3, n0, _MP,
|
|
2745
|
+
0,
|
|
2746
|
+
[_aO],
|
|
2747
|
+
[64 | 0], 1
|
|
2748
|
+
];
|
|
2749
|
+
export var MatchPrincipals$ = [3, n0, _MPa,
|
|
2750
|
+
0,
|
|
2751
|
+
[_aO],
|
|
2752
|
+
[() => MatchPrincipalEntries], 1
|
|
2753
|
+
];
|
|
2502
2754
|
export var McpDescriptor$ = [3, n0, _MD,
|
|
2503
2755
|
0,
|
|
2504
2756
|
[_se, _to],
|
|
@@ -2516,8 +2768,8 @@ export var McpLambdaTargetConfiguration$ = [3, n0, _MLTC,
|
|
|
2516
2768
|
];
|
|
2517
2769
|
export var McpServerTargetConfiguration$ = [3, n0, _MSTC,
|
|
2518
2770
|
0,
|
|
2519
|
-
[_end, _mTS,
|
|
2520
|
-
[0, [() => McpToolSchemaConfiguration$, 0],
|
|
2771
|
+
[_end, _mTS, _lMi, _rP],
|
|
2772
|
+
[0, [() => McpToolSchemaConfiguration$, 0], 0, 1], 1
|
|
2521
2773
|
];
|
|
2522
2774
|
export var Memory$ = [3, n0, _M,
|
|
2523
2775
|
0,
|
|
@@ -2691,17 +2943,17 @@ export var RegistryRecordOAuthCredentialProvider$ = [3, n0, _RROACP,
|
|
|
2691
2943
|
];
|
|
2692
2944
|
export var RegistryRecordSummary$ = [3, n0, _RRS,
|
|
2693
2945
|
0,
|
|
2694
|
-
[_rAeg, _rAe,
|
|
2946
|
+
[_rAeg, _rAe, _rIec, _n, _dT, _rV, _st, _cA, _uA, _d],
|
|
2695
2947
|
[0, 0, 0, 0, 0, 0, 0, 5, 5, [() => Description, 0]], 9
|
|
2696
2948
|
];
|
|
2697
2949
|
export var RegistrySummary$ = [3, n0, _RS,
|
|
2698
2950
|
0,
|
|
2699
|
-
[_n,
|
|
2951
|
+
[_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _sRt],
|
|
2700
2952
|
[0, 0, 0, 0, 5, 5, [() => Description, 0], 0, 0], 6
|
|
2701
2953
|
];
|
|
2702
2954
|
export var Rule$ = [3, n0, _R,
|
|
2703
2955
|
0,
|
|
2704
|
-
[_sCa,
|
|
2956
|
+
[_sCa, _fil, _sCe],
|
|
2705
2957
|
[() => SamplingConfig$, () => FilterList, () => SessionConfig$], 1
|
|
2706
2958
|
];
|
|
2707
2959
|
export var RuntimeMetadataConfiguration$ = [3, n0, _RMC,
|
|
@@ -2709,6 +2961,11 @@ export var RuntimeMetadataConfiguration$ = [3, n0, _RMC,
|
|
|
2709
2961
|
[_rMMDSV],
|
|
2710
2962
|
[2], 1
|
|
2711
2963
|
];
|
|
2964
|
+
export var RuntimeTargetConfiguration$ = [3, n0, _RTC,
|
|
2965
|
+
0,
|
|
2966
|
+
[_ar, _q],
|
|
2967
|
+
[0, 0], 1
|
|
2968
|
+
];
|
|
2712
2969
|
export var S3Configuration$ = [3, n0, _SC,
|
|
2713
2970
|
0,
|
|
2714
2971
|
[_ur, _bOAI],
|
|
@@ -2716,7 +2973,7 @@ export var S3Configuration$ = [3, n0, _SC,
|
|
|
2716
2973
|
];
|
|
2717
2974
|
export var S3Location$ = [3, n0, _SL,
|
|
2718
2975
|
0,
|
|
2719
|
-
[
|
|
2976
|
+
[_bu, _pre, _vI],
|
|
2720
2977
|
[0, 0, 0], 2
|
|
2721
2978
|
];
|
|
2722
2979
|
export var SalesforceOauth2ProviderConfigInput$ = [3, n0, _SOPCI,
|
|
@@ -2844,6 +3101,16 @@ export var StartPolicyGenerationResponse$ = [3, n0, _SPGRt,
|
|
|
2844
3101
|
[_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _st, _sR, _f],
|
|
2845
3102
|
[0, 0, 0, 0, () => Resource$, 5, 5, 0, 64 | 0, 0], 9
|
|
2846
3103
|
];
|
|
3104
|
+
export var StaticOverride$ = [3, n0, _SO,
|
|
3105
|
+
0,
|
|
3106
|
+
[_bAu, _bV],
|
|
3107
|
+
[0, 0], 2
|
|
3108
|
+
];
|
|
3109
|
+
export var StaticRoute$ = [3, n0, _SR,
|
|
3110
|
+
0,
|
|
3111
|
+
[_tN],
|
|
3112
|
+
[[() => TargetName, 0]], 1
|
|
3113
|
+
];
|
|
2847
3114
|
export var StrategyConfiguration$ = [3, n0, _SCt,
|
|
2848
3115
|
0,
|
|
2849
3116
|
[_t, _ex, _cons, _ref, _sMC],
|
|
@@ -2856,12 +3123,12 @@ export var StreamDeliveryResources$ = [3, n0, _SDR,
|
|
|
2856
3123
|
];
|
|
2857
3124
|
export var SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
|
|
2858
3125
|
0,
|
|
2859
|
-
[
|
|
3126
|
+
[_rIe, _rIec],
|
|
2860
3127
|
[[0, 1], [0, 1]], 2
|
|
2861
3128
|
];
|
|
2862
3129
|
export var SubmitRegistryRecordForApprovalResponse$ = [3, n0, _SRRFARu,
|
|
2863
3130
|
0,
|
|
2864
|
-
[_rAeg, _rAe,
|
|
3131
|
+
[_rAeg, _rAe, _rIec, _st, _uA],
|
|
2865
3132
|
[0, 0, 0, 0, 5], 5
|
|
2866
3133
|
];
|
|
2867
3134
|
export var SummaryConsolidationOverride$ = [3, n0, _SCOu,
|
|
@@ -2899,6 +3166,11 @@ export var SynchronizeGatewayTargetsResponse$ = [3, n0, _SGTRy,
|
|
|
2899
3166
|
[_tar],
|
|
2900
3167
|
[[() => GatewayTargetList, 0]]
|
|
2901
3168
|
];
|
|
3169
|
+
export var SystemManagedBlock$ = [3, n0, _SMB,
|
|
3170
|
+
0,
|
|
3171
|
+
[_mB],
|
|
3172
|
+
[0], 1
|
|
3173
|
+
];
|
|
2902
3174
|
export var TagResourceRequest$ = [3, n0, _TRR,
|
|
2903
3175
|
0,
|
|
2904
3176
|
[_rAes, _ta],
|
|
@@ -2914,6 +3186,11 @@ export var TargetSummary$ = [3, n0, _TS,
|
|
|
2914
3186
|
[_tI, _n, _st, _cA, _uA, _d, _rP],
|
|
2915
3187
|
[0, [() => TargetName, 0], 0, 5, 5, [() => TargetDescription, 0], 1], 5
|
|
2916
3188
|
];
|
|
3189
|
+
export var TargetTrafficSplitEntry$ = [3, n0, _TTSE,
|
|
3190
|
+
0,
|
|
3191
|
+
[_n, _w, _tN, _d, _meta],
|
|
3192
|
+
[0, 1, [() => TargetName, 0], 0, 128 | 0], 3
|
|
3193
|
+
];
|
|
2917
3194
|
export var TimeBasedTrigger$ = [3, n0, _TBT,
|
|
2918
3195
|
0,
|
|
2919
3196
|
[_iST],
|
|
@@ -2944,6 +3221,11 @@ export var ToolsDefinition$ = [3, n0, _TDoo,
|
|
|
2944
3221
|
[_pV, _iC],
|
|
2945
3222
|
[0, 0]
|
|
2946
3223
|
];
|
|
3224
|
+
export var TrafficSplitEntry$ = [3, n0, _TSE,
|
|
3225
|
+
0,
|
|
3226
|
+
[_n, _w, _cBo, _d, _meta],
|
|
3227
|
+
[0, 1, () => ConfigurationBundleReference$, 0, 128 | 0], 3
|
|
3228
|
+
];
|
|
2947
3229
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
2948
3230
|
0,
|
|
2949
3231
|
[_rAes, _tKa],
|
|
@@ -2984,6 +3266,16 @@ export var UpdateApiKeyCredentialProviderResponse$ = [3, n0, _UAKCPRp,
|
|
|
2984
3266
|
[_aKSA, _n, _cPA, _cT, _lUT],
|
|
2985
3267
|
[() => Secret$, 0, 0, 4, 4], 5
|
|
2986
3268
|
];
|
|
3269
|
+
export var UpdateConfigurationBundleRequest$ = [3, n0, _UCBR,
|
|
3270
|
+
0,
|
|
3271
|
+
[_bIu, _cTl, _bN, _d, _com, _pVI, _bNr, _cM, _cB],
|
|
3272
|
+
[[0, 1], [0, 4], 0, [() => ConfigurationBundleDescription, 0], [() => ComponentConfigurationMap, 0], 64 | 0, 0, 0, () => VersionCreatedBySource$], 1
|
|
3273
|
+
];
|
|
3274
|
+
export var UpdateConfigurationBundleResponse$ = [3, n0, _UCBRp,
|
|
3275
|
+
0,
|
|
3276
|
+
[_bAu, _bIu, _vI, _uA],
|
|
3277
|
+
[0, 0, 0, 4], 4
|
|
3278
|
+
];
|
|
2987
3279
|
export var UpdatedA2aDescriptor$ = [3, n0, _UAD,
|
|
2988
3280
|
0,
|
|
2989
3281
|
[_oV],
|
|
@@ -3026,7 +3318,7 @@ export var UpdatedDescriptors$ = [3, n0, _UDp,
|
|
|
3026
3318
|
];
|
|
3027
3319
|
export var UpdatedDescriptorsUnion$ = [3, n0, _UDU,
|
|
3028
3320
|
0,
|
|
3029
|
-
[_mc,
|
|
3321
|
+
[_mc, _aa, _cu, _aSg],
|
|
3030
3322
|
[() => UpdatedMcpDescriptor$, () => UpdatedA2aDescriptor$, () => UpdatedCustomDescriptor$, () => UpdatedAgentSkillsDescriptor$]
|
|
3031
3323
|
];
|
|
3032
3324
|
export var UpdatedHarnessEnvironmentArtifact$ = [3, n0, _UHEA,
|
|
@@ -3081,8 +3373,8 @@ export var UpdatedToolsDefinition$ = [3, n0, _UTD,
|
|
|
3081
3373
|
];
|
|
3082
3374
|
export var UpdateEvaluatorRequest$ = [3, n0, _UER,
|
|
3083
3375
|
0,
|
|
3084
|
-
[_eI, _cTl, _d, _eC, _le],
|
|
3085
|
-
[[0, 1], [0, 4], [() => EvaluatorDescription, 0], [() => EvaluatorConfig$, 0], 0], 1
|
|
3376
|
+
[_eI, _cTl, _d, _eC, _le, _kKA],
|
|
3377
|
+
[[0, 1], [0, 4], [() => EvaluatorDescription, 0], [() => EvaluatorConfig$, 0], 0, 0], 1
|
|
3086
3378
|
];
|
|
3087
3379
|
export var UpdateEvaluatorResponse$ = [3, n0, _UERp,
|
|
3088
3380
|
0,
|
|
@@ -3091,13 +3383,23 @@ export var UpdateEvaluatorResponse$ = [3, n0, _UERp,
|
|
|
3091
3383
|
];
|
|
3092
3384
|
export var UpdateGatewayRequest$ = [3, n0, _UGR,
|
|
3093
3385
|
0,
|
|
3094
|
-
[_gIa, _n, _rA,
|
|
3095
|
-
[[0, 1], [() => GatewayName, 0], 0, 0,
|
|
3386
|
+
[_gIa, _n, _rA, _aT, _d, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL],
|
|
3387
|
+
[[0, 1], [() => GatewayName, 0], 0, 0, [() => GatewayDescription, 0], 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0], 4
|
|
3096
3388
|
];
|
|
3097
3389
|
export var UpdateGatewayResponse$ = [3, n0, _UGRp,
|
|
3098
3390
|
0,
|
|
3099
|
-
[_gA, _gI, _cA, _uA, _st, _n,
|
|
3100
|
-
[0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0,
|
|
3391
|
+
[_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
|
|
3392
|
+
[0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 7
|
|
3393
|
+
];
|
|
3394
|
+
export var UpdateGatewayRuleRequest$ = [3, n0, _UGRR,
|
|
3395
|
+
0,
|
|
3396
|
+
[_gIa, _rI, _pr, _cond, _a, _d],
|
|
3397
|
+
[[0, 1], [0, 1], 1, () => Conditions, [() => Actions, 0], 0], 2
|
|
3398
|
+
];
|
|
3399
|
+
export var UpdateGatewayRuleResponse$ = [3, n0, _UGRRp,
|
|
3400
|
+
0,
|
|
3401
|
+
[_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
|
|
3402
|
+
[0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => SystemManagedBlock$, 5], 6
|
|
3101
3403
|
];
|
|
3102
3404
|
export var UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
|
|
3103
3405
|
0,
|
|
@@ -3106,8 +3408,8 @@ export var UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
|
|
|
3106
3408
|
];
|
|
3107
3409
|
export var UpdateGatewayTargetResponse$ = [3, n0, _UGTRp,
|
|
3108
3410
|
0,
|
|
3109
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
|
|
3110
|
-
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData
|
|
3411
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
3412
|
+
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
3111
3413
|
];
|
|
3112
3414
|
export var UpdateHarnessRequest$ = [3, n0, _UHR,
|
|
3113
3415
|
0,
|
|
@@ -3171,32 +3473,32 @@ export var UpdatePolicyResponse$ = [3, n0, _UPRp,
|
|
|
3171
3473
|
];
|
|
3172
3474
|
export var UpdateRegistryRecordRequest$ = [3, n0, _URRR,
|
|
3173
3475
|
0,
|
|
3174
|
-
[
|
|
3476
|
+
[_rIe, _rIec, _n, _d, _dT, _des, _rV, _sT, _sC, _tSr],
|
|
3175
3477
|
[[0, 1], [0, 1], 0, [() => UpdatedDescription$, 0], 0, () => UpdatedDescriptors$, 0, () => UpdatedSynchronizationType$, () => UpdatedSynchronizationConfiguration$, 2], 2
|
|
3176
3478
|
];
|
|
3177
3479
|
export var UpdateRegistryRecordResponse$ = [3, n0, _URRRp,
|
|
3178
3480
|
0,
|
|
3179
|
-
[_rAeg, _rAe,
|
|
3481
|
+
[_rAeg, _rAe, _rIec, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
|
|
3180
3482
|
[0, 0, 0, 0, 0, () => Descriptors$, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => SynchronizationConfiguration$], 9
|
|
3181
3483
|
];
|
|
3182
3484
|
export var UpdateRegistryRecordStatusRequest$ = [3, n0, _URRSR,
|
|
3183
3485
|
0,
|
|
3184
|
-
[
|
|
3486
|
+
[_rIe, _rIec, _st, _sRt],
|
|
3185
3487
|
[[0, 1], [0, 1], 0, 0], 4
|
|
3186
3488
|
];
|
|
3187
3489
|
export var UpdateRegistryRecordStatusResponse$ = [3, n0, _URRSRp,
|
|
3188
3490
|
0,
|
|
3189
|
-
[_rAeg, _rAe,
|
|
3491
|
+
[_rAeg, _rAe, _rIec, _st, _sRt, _uA],
|
|
3190
3492
|
[0, 0, 0, 0, 0, 5], 6
|
|
3191
3493
|
];
|
|
3192
3494
|
export var UpdateRegistryRequest$ = [3, n0, _URRp,
|
|
3193
3495
|
0,
|
|
3194
|
-
[
|
|
3496
|
+
[_rIe, _n, _d, _aCu, _aCp],
|
|
3195
3497
|
[[0, 1], 0, [() => UpdatedDescription$, 0], () => UpdatedAuthorizerConfiguration$, () => UpdatedApprovalConfiguration$], 1
|
|
3196
3498
|
];
|
|
3197
3499
|
export var UpdateRegistryResponse$ = [3, n0, _URRpd,
|
|
3198
3500
|
0,
|
|
3199
|
-
[_n,
|
|
3501
|
+
[_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
|
|
3200
3502
|
[0, 0, 0, 0, 5, 5, [() => Description, 0], 0, () => AuthorizerConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
3201
3503
|
];
|
|
3202
3504
|
export var UpdateWorkloadIdentityRequest$ = [3, n0, _UWIR,
|
|
@@ -3244,11 +3546,36 @@ export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
|
3244
3546
|
[_n, _m],
|
|
3245
3547
|
[0, 0], 2
|
|
3246
3548
|
];
|
|
3549
|
+
export var VersionCreatedBySource$ = [3, n0, _VCBS,
|
|
3550
|
+
0,
|
|
3551
|
+
[_n, _ar],
|
|
3552
|
+
[0, 0], 1
|
|
3553
|
+
];
|
|
3554
|
+
export var VersionFilter$ = [3, n0, _VF,
|
|
3555
|
+
0,
|
|
3556
|
+
[_bNr, _cBN, _lPB],
|
|
3557
|
+
[0, 0, 2]
|
|
3558
|
+
];
|
|
3559
|
+
export var VersionLineageMetadata$ = [3, n0, _VLM,
|
|
3560
|
+
0,
|
|
3561
|
+
[_pVI, _bNr, _cB, _cM],
|
|
3562
|
+
[64 | 0, 0, () => VersionCreatedBySource$, 0]
|
|
3563
|
+
];
|
|
3247
3564
|
export var VpcConfig$ = [3, n0, _VC,
|
|
3248
3565
|
0,
|
|
3249
3566
|
[_sG, _su],
|
|
3250
3567
|
[64 | 0, 64 | 0], 2
|
|
3251
3568
|
];
|
|
3569
|
+
export var WeightedOverride$ = [3, n0, _WO,
|
|
3570
|
+
0,
|
|
3571
|
+
[_tSra],
|
|
3572
|
+
[() => TrafficSplitEntries], 1
|
|
3573
|
+
];
|
|
3574
|
+
export var WeightedRoute$ = [3, n0, _WR,
|
|
3575
|
+
0,
|
|
3576
|
+
[_tSra],
|
|
3577
|
+
[[() => TargetTrafficSplitEntries, 0]], 1
|
|
3578
|
+
];
|
|
3252
3579
|
export var WorkloadIdentityDetails$ = [3, n0, _WID,
|
|
3253
3580
|
0,
|
|
3254
3581
|
[_wIA],
|
|
@@ -3260,6 +3587,10 @@ export var WorkloadIdentityType$ = [3, n0, _WIT,
|
|
|
3260
3587
|
[0, 0], 2
|
|
3261
3588
|
];
|
|
3262
3589
|
var __Unit = "unit";
|
|
3590
|
+
var Actions = [1, n0, _A,
|
|
3591
|
+
0, [() => Action$,
|
|
3592
|
+
0]
|
|
3593
|
+
];
|
|
3263
3594
|
var AgentRuntimeEndpoints = [1, n0, _AREg,
|
|
3264
3595
|
0, [() => AgentRuntimeEndpoint$,
|
|
3265
3596
|
0]
|
|
@@ -3304,6 +3635,17 @@ var CodeInterpreterSummaries = [1, n0, _CISo,
|
|
|
3304
3635
|
0, [() => CodeInterpreterSummary$,
|
|
3305
3636
|
0]
|
|
3306
3637
|
];
|
|
3638
|
+
var Conditions = [1, n0, _Co,
|
|
3639
|
+
0, () => Condition$
|
|
3640
|
+
];
|
|
3641
|
+
var ConfigurationBundleSummaryList = [1, n0, _CBSL,
|
|
3642
|
+
0, [() => ConfigurationBundleSummary$,
|
|
3643
|
+
0]
|
|
3644
|
+
];
|
|
3645
|
+
var ConfigurationBundleVersionList = 64 | 0;
|
|
3646
|
+
var ConfigurationBundleVersionSummaryList = [1, n0, _CBVSL,
|
|
3647
|
+
0, () => ConfigurationBundleVersionSummary$
|
|
3648
|
+
];
|
|
3307
3649
|
var ContentConfigurationList = [1, n0, _CCL,
|
|
3308
3650
|
0, () => ContentConfiguration$
|
|
3309
3651
|
];
|
|
@@ -3338,6 +3680,10 @@ var GatewayInterceptionPoints = 64 | 0;
|
|
|
3338
3680
|
var GatewayInterceptorConfigurations = [1, n0, _GICa,
|
|
3339
3681
|
0, () => GatewayInterceptorConfiguration$
|
|
3340
3682
|
];
|
|
3683
|
+
var GatewayRules = [1, n0, _GR,
|
|
3684
|
+
0, [() => GatewayRuleDetail$,
|
|
3685
|
+
0]
|
|
3686
|
+
];
|
|
3341
3687
|
var GatewaySummaries = [1, n0, _GSa,
|
|
3342
3688
|
0, [() => GatewaySummary$,
|
|
3343
3689
|
0]
|
|
@@ -3362,6 +3708,10 @@ var HarnessTools = [1, n0, _HTa,
|
|
|
3362
3708
|
0]
|
|
3363
3709
|
];
|
|
3364
3710
|
var LogGroupNamesList = 64 | 0;
|
|
3711
|
+
var MatchPathPatterns = 64 | 0;
|
|
3712
|
+
var MatchPrincipalEntries = [1, n0, _MPE,
|
|
3713
|
+
0, () => MatchPrincipalEntry$
|
|
3714
|
+
];
|
|
3365
3715
|
var MatchValueStringList = 64 | 0;
|
|
3366
3716
|
var McpSupportedVersions = 64 | 0;
|
|
3367
3717
|
var MemoryStrategyInputList = [1, n0, _MSIL,
|
|
@@ -3445,10 +3795,17 @@ var TargetSummaries = [1, n0, _TSa,
|
|
|
3445
3795
|
0, [() => TargetSummary$,
|
|
3446
3796
|
0]
|
|
3447
3797
|
];
|
|
3798
|
+
var TargetTrafficSplitEntries = [1, n0, _TTSEa,
|
|
3799
|
+
0, [() => TargetTrafficSplitEntry$,
|
|
3800
|
+
0]
|
|
3801
|
+
];
|
|
3448
3802
|
var TokenEndpointAuthMethodsType = 64 | 0;
|
|
3449
3803
|
var ToolDefinitions = [1, n0, _TDool,
|
|
3450
3804
|
0, () => ToolDefinition$
|
|
3451
3805
|
];
|
|
3806
|
+
var TrafficSplitEntries = [1, n0, _TSEr,
|
|
3807
|
+
0, () => TrafficSplitEntry$
|
|
3808
|
+
];
|
|
3452
3809
|
var TriggerConditionInputList = [1, n0, _TCIL,
|
|
3453
3810
|
0, () => TriggerConditionInput$
|
|
3454
3811
|
];
|
|
@@ -3461,6 +3818,12 @@ var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
|
3461
3818
|
var WorkloadIdentityList = [1, n0, _WIL,
|
|
3462
3819
|
0, () => WorkloadIdentityType$
|
|
3463
3820
|
];
|
|
3821
|
+
var ComponentConfigurationMap = [2, n0, _CCM,
|
|
3822
|
+
0, [0,
|
|
3823
|
+
0],
|
|
3824
|
+
[() => ComponentConfiguration$,
|
|
3825
|
+
0]
|
|
3826
|
+
];
|
|
3464
3827
|
var CustomParameterMap = 128 | 0;
|
|
3465
3828
|
var EnvironmentVariablesMap = [2, n0, _EVM,
|
|
3466
3829
|
8, 0, 0
|
|
@@ -3481,6 +3844,12 @@ var SchemaProperties = [2, n0, _SP,
|
|
|
3481
3844
|
0, 0, () => SchemaDefinition$
|
|
3482
3845
|
];
|
|
3483
3846
|
var TagsMap = 128 | 0;
|
|
3847
|
+
var TrafficSplitMetadataMap = 128 | 0;
|
|
3848
|
+
export var Action$ = [4, n0, _Ac,
|
|
3849
|
+
0,
|
|
3850
|
+
[_cBo, _rTT],
|
|
3851
|
+
[() => ConfigurationBundleAction$, [() => RouteToTargetAction$, 0]]
|
|
3852
|
+
];
|
|
3484
3853
|
export var AgentRuntimeArtifact$ = [4, n0, _ARA,
|
|
3485
3854
|
0,
|
|
3486
3855
|
[_cCon, _cCod],
|
|
@@ -3511,7 +3880,7 @@ export var ClaimMatchValueType$ = [4, n0, _CMVT,
|
|
|
3511
3880
|
[_mVS, _mVSL],
|
|
3512
3881
|
[0, 64 | 0]
|
|
3513
3882
|
];
|
|
3514
|
-
export var Code$ = [4, n0,
|
|
3883
|
+
export var Code$ = [4, n0, _Cod,
|
|
3515
3884
|
0,
|
|
3516
3885
|
[_s_],
|
|
3517
3886
|
[() => S3Location$]
|
|
@@ -3521,12 +3890,22 @@ export var CodeBasedEvaluatorConfig$ = [4, n0, _CBEC,
|
|
|
3521
3890
|
[_lCa],
|
|
3522
3891
|
[() => LambdaEvaluatorConfig$]
|
|
3523
3892
|
];
|
|
3893
|
+
export var Condition$ = [4, n0, _Con,
|
|
3894
|
+
0,
|
|
3895
|
+
[_mPa, _mPat],
|
|
3896
|
+
[() => MatchPrincipals$, () => MatchPaths$]
|
|
3897
|
+
];
|
|
3898
|
+
export var ConfigurationBundleAction$ = [4, n0, _CBA,
|
|
3899
|
+
0,
|
|
3900
|
+
[_sO, _wO],
|
|
3901
|
+
[() => StaticOverride$, () => WeightedOverride$]
|
|
3902
|
+
];
|
|
3524
3903
|
export var ConsolidationConfiguration$ = [4, n0, _CCons,
|
|
3525
3904
|
0,
|
|
3526
3905
|
[_cCC],
|
|
3527
3906
|
[[() => CustomConsolidationConfiguration$, 0]]
|
|
3528
3907
|
];
|
|
3529
|
-
export var Content$ = [4, n0,
|
|
3908
|
+
export var Content$ = [4, n0, _Cont,
|
|
3530
3909
|
0,
|
|
3531
3910
|
[_rTa],
|
|
3532
3911
|
[0]
|
|
@@ -3538,7 +3917,7 @@ export var CredentialProvider$ = [4, n0, _CPr,
|
|
|
3538
3917
|
];
|
|
3539
3918
|
export var CustomConfigurationInput$ = [4, n0, _CCI,
|
|
3540
3919
|
0,
|
|
3541
|
-
[
|
|
3920
|
+
[_sOe, _sOu, _uPO, _eO, _sMC],
|
|
3542
3921
|
[[() => SemanticOverrideConfigurationInput$, 0], [() => SummaryOverrideConfigurationInput$, 0], [() => UserPreferenceOverrideConfigurationInput$, 0], [() => EpisodicOverrideConfigurationInput$, 0], () => SelfManagedConfigurationInput$]
|
|
3543
3922
|
];
|
|
3544
3923
|
export var CustomConsolidationConfiguration$ = [4, n0, _CCC,
|
|
@@ -3578,7 +3957,7 @@ export var DataSourceConfig$ = [4, n0, _DSC,
|
|
|
3578
3957
|
];
|
|
3579
3958
|
export var EvaluatorConfig$ = [4, n0, _EC,
|
|
3580
3959
|
0,
|
|
3581
|
-
[_lAAJ,
|
|
3960
|
+
[_lAAJ, _cBod],
|
|
3582
3961
|
[[() => LlmAsAJudgeEvaluatorConfig$, 0], () => CodeBasedEvaluatorConfig$]
|
|
3583
3962
|
];
|
|
3584
3963
|
export var EvaluatorModelConfig$ = [4, n0, _EMC,
|
|
@@ -3603,7 +3982,7 @@ export var FilesystemConfiguration$ = [4, n0, _FCi,
|
|
|
3603
3982
|
];
|
|
3604
3983
|
export var FilterValue$ = [4, n0, _FV,
|
|
3605
3984
|
0,
|
|
3606
|
-
[_sVt, _dV,
|
|
3985
|
+
[_sVt, _dV, _bVo],
|
|
3607
3986
|
[0, 1, 2]
|
|
3608
3987
|
];
|
|
3609
3988
|
export var GatewayProtocolConfiguration$ = [4, n0, _GPC,
|
|
@@ -3661,11 +4040,21 @@ export var HarnessTruncationStrategyConfiguration$ = [4, n0, _HTSC,
|
|
|
3661
4040
|
[_sW, _sum],
|
|
3662
4041
|
[() => HarnessSlidingWindowConfiguration$, () => HarnessSummarizationConfiguration$]
|
|
3663
4042
|
];
|
|
4043
|
+
export var HttpTargetConfiguration$ = [4, n0, _HTCt,
|
|
4044
|
+
0,
|
|
4045
|
+
[_aRg],
|
|
4046
|
+
[() => RuntimeTargetConfiguration$]
|
|
4047
|
+
];
|
|
3664
4048
|
export var InterceptorConfiguration$ = [4, n0, _ICnt,
|
|
3665
4049
|
0,
|
|
3666
4050
|
[_lam],
|
|
3667
4051
|
[() => LambdaInterceptorConfiguration$]
|
|
3668
4052
|
];
|
|
4053
|
+
export var MatchPrincipalEntry$ = [4, n0, _MPEa,
|
|
4054
|
+
0,
|
|
4055
|
+
[_iPa],
|
|
4056
|
+
[() => IamPrincipal$]
|
|
4057
|
+
];
|
|
3669
4058
|
export var McpTargetConfiguration$ = [4, n0, _MTC,
|
|
3670
4059
|
0,
|
|
3671
4060
|
[_oAS, _sMm, _lam, _mSc, _aG],
|
|
@@ -3751,6 +4140,11 @@ export var ResourceLocation$ = [4, n0, _RL,
|
|
|
3751
4140
|
[_s_],
|
|
3752
4141
|
[() => S3Location$]
|
|
3753
4142
|
];
|
|
4143
|
+
export var RouteToTargetAction$ = [4, n0, _RTTA,
|
|
4144
|
+
0,
|
|
4145
|
+
[_sRta, _wR],
|
|
4146
|
+
[[() => StaticRoute$, 0], [() => WeightedRoute$, 0]]
|
|
4147
|
+
];
|
|
3754
4148
|
export var SelfManagedLatticeResource$ = [4, n0, _SMLR,
|
|
3755
4149
|
0,
|
|
3756
4150
|
[_rCI],
|
|
@@ -3763,8 +4157,8 @@ export var StreamDeliveryResource$ = [4, n0, _SDRt,
|
|
|
3763
4157
|
];
|
|
3764
4158
|
export var TargetConfiguration$ = [4, n0, _TC,
|
|
3765
4159
|
0,
|
|
3766
|
-
[_mc],
|
|
3767
|
-
[[() => McpTargetConfiguration$, 0]]
|
|
4160
|
+
[_mc, _ht],
|
|
4161
|
+
[[() => McpTargetConfiguration$, 0], () => HttpTargetConfiguration$]
|
|
3768
4162
|
];
|
|
3769
4163
|
export var ToolSchema$ = [4, n0, _TSo,
|
|
3770
4164
|
0,
|
|
@@ -3799,12 +4193,18 @@ export var CreateBrowserProfile$ = [9, n0, _CBP,
|
|
|
3799
4193
|
export var CreateCodeInterpreter$ = [9, n0, _CCIr,
|
|
3800
4194
|
{ [_ht]: ["PUT", "/code-interpreters", 202] }, () => CreateCodeInterpreterRequest$, () => CreateCodeInterpreterResponse$
|
|
3801
4195
|
];
|
|
4196
|
+
export var CreateConfigurationBundle$ = [9, n0, _CCB,
|
|
4197
|
+
{ [_ht]: ["POST", "/configuration-bundles/create", 201] }, () => CreateConfigurationBundleRequest$, () => CreateConfigurationBundleResponse$
|
|
4198
|
+
];
|
|
3802
4199
|
export var CreateEvaluator$ = [9, n0, _CEr,
|
|
3803
4200
|
{ [_ht]: ["POST", "/evaluators/create", 202] }, () => CreateEvaluatorRequest$, () => CreateEvaluatorResponse$
|
|
3804
4201
|
];
|
|
3805
4202
|
export var CreateGateway$ = [9, n0, _CG,
|
|
3806
4203
|
{ [_ht]: ["POST", "/gateways/", 202] }, () => CreateGatewayRequest$, () => CreateGatewayResponse$
|
|
3807
4204
|
];
|
|
4205
|
+
export var CreateGatewayRule$ = [9, n0, _CGRre,
|
|
4206
|
+
{ [_ht]: ["POST", "/gateways/{gatewayIdentifier}/rules", 202] }, () => CreateGatewayRuleRequest$, () => CreateGatewayRuleResponse$
|
|
4207
|
+
];
|
|
3808
4208
|
export var CreateGatewayTarget$ = [9, n0, _CGT,
|
|
3809
4209
|
{ [_ht]: ["POST", "/gateways/{gatewayIdentifier}/targets/", 202] }, () => CreateGatewayTargetRequest$, () => CreateGatewayTargetResponse$
|
|
3810
4210
|
];
|
|
@@ -3853,12 +4253,18 @@ export var DeleteBrowserProfile$ = [9, n0, _DBP,
|
|
|
3853
4253
|
export var DeleteCodeInterpreter$ = [9, n0, _DCI,
|
|
3854
4254
|
{ [_ht]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202] }, () => DeleteCodeInterpreterRequest$, () => DeleteCodeInterpreterResponse$
|
|
3855
4255
|
];
|
|
4256
|
+
export var DeleteConfigurationBundle$ = [9, n0, _DCB,
|
|
4257
|
+
{ [_ht]: ["DELETE", "/configuration-bundles/{bundleId}", 202] }, () => DeleteConfigurationBundleRequest$, () => DeleteConfigurationBundleResponse$
|
|
4258
|
+
];
|
|
3856
4259
|
export var DeleteEvaluator$ = [9, n0, _DE,
|
|
3857
4260
|
{ [_ht]: ["DELETE", "/evaluators/{evaluatorId}", 202] }, () => DeleteEvaluatorRequest$, () => DeleteEvaluatorResponse$
|
|
3858
4261
|
];
|
|
3859
4262
|
export var DeleteGateway$ = [9, n0, _DG,
|
|
3860
4263
|
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202] }, () => DeleteGatewayRequest$, () => DeleteGatewayResponse$
|
|
3861
4264
|
];
|
|
4265
|
+
export var DeleteGatewayRule$ = [9, n0, _DGRel,
|
|
4266
|
+
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => DeleteGatewayRuleRequest$, () => DeleteGatewayRuleResponse$
|
|
4267
|
+
];
|
|
3862
4268
|
export var DeleteGatewayTarget$ = [9, n0, _DGT,
|
|
3863
4269
|
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] }, () => DeleteGatewayTargetRequest$, () => DeleteGatewayTargetResponse$
|
|
3864
4270
|
];
|
|
@@ -3910,12 +4316,21 @@ export var GetBrowserProfile$ = [9, n0, _GBP,
|
|
|
3910
4316
|
export var GetCodeInterpreter$ = [9, n0, _GCI,
|
|
3911
4317
|
{ [_ht]: ["GET", "/code-interpreters/{codeInterpreterId}", 200] }, () => GetCodeInterpreterRequest$, () => GetCodeInterpreterResponse$
|
|
3912
4318
|
];
|
|
4319
|
+
export var GetConfigurationBundle$ = [9, n0, _GCB,
|
|
4320
|
+
{ [_ht]: ["GET", "/configuration-bundles/{bundleId}", 200] }, () => GetConfigurationBundleRequest$, () => GetConfigurationBundleResponse$
|
|
4321
|
+
];
|
|
4322
|
+
export var GetConfigurationBundleVersion$ = [9, n0, _GCBV,
|
|
4323
|
+
{ [_ht]: ["GET", "/configuration-bundles/{bundleId}/versions/{versionId}", 200] }, () => GetConfigurationBundleVersionRequest$, () => GetConfigurationBundleVersionResponse$
|
|
4324
|
+
];
|
|
3913
4325
|
export var GetEvaluator$ = [9, n0, _GE,
|
|
3914
4326
|
{ [_ht]: ["GET", "/evaluators/{evaluatorId}", 200] }, () => GetEvaluatorRequest$, () => GetEvaluatorResponse$
|
|
3915
4327
|
];
|
|
3916
4328
|
export var GetGateway$ = [9, n0, _GG,
|
|
3917
4329
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/", 200] }, () => GetGatewayRequest$, () => GetGatewayResponse$
|
|
3918
4330
|
];
|
|
4331
|
+
export var GetGatewayRule$ = [9, n0, _GGRet,
|
|
4332
|
+
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 200] }, () => GetGatewayRuleRequest$, () => GetGatewayRuleResponse$
|
|
4333
|
+
];
|
|
3919
4334
|
export var GetGatewayTarget$ = [9, n0, _GGT,
|
|
3920
4335
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 200] }, () => GetGatewayTargetRequest$, () => GetGatewayTargetResponse$
|
|
3921
4336
|
];
|
|
@@ -3940,7 +4355,7 @@ export var GetPolicyEngine$ = [9, n0, _GPE,
|
|
|
3940
4355
|
export var GetPolicyGeneration$ = [9, n0, _GPG,
|
|
3941
4356
|
{ [_ht]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}", 200] }, () => GetPolicyGenerationRequest$, () => GetPolicyGenerationResponse$
|
|
3942
4357
|
];
|
|
3943
|
-
export var GetRegistry$ = [9, n0,
|
|
4358
|
+
export var GetRegistry$ = [9, n0, _GRe,
|
|
3944
4359
|
{ [_ht]: ["GET", "/registries/{registryId}", 200] }, () => GetRegistryRequest$, () => GetRegistryResponse$
|
|
3945
4360
|
];
|
|
3946
4361
|
export var GetRegistryRecord$ = [9, n0, _GRRet,
|
|
@@ -3976,9 +4391,18 @@ export var ListBrowsers$ = [9, n0, _LB,
|
|
|
3976
4391
|
export var ListCodeInterpreters$ = [9, n0, _LCI,
|
|
3977
4392
|
{ [_ht]: ["POST", "/code-interpreters", 200] }, () => ListCodeInterpretersRequest$, () => ListCodeInterpretersResponse$
|
|
3978
4393
|
];
|
|
4394
|
+
export var ListConfigurationBundles$ = [9, n0, _LCB,
|
|
4395
|
+
{ [_ht]: ["POST", "/configuration-bundles", 200] }, () => ListConfigurationBundlesRequest$, () => ListConfigurationBundlesResponse$
|
|
4396
|
+
];
|
|
4397
|
+
export var ListConfigurationBundleVersions$ = [9, n0, _LCBV,
|
|
4398
|
+
{ [_ht]: ["POST", "/configuration-bundles/{bundleId}/versions", 200] }, () => ListConfigurationBundleVersionsRequest$, () => ListConfigurationBundleVersionsResponse$
|
|
4399
|
+
];
|
|
3979
4400
|
export var ListEvaluators$ = [9, n0, _LE,
|
|
3980
4401
|
{ [_ht]: ["POST", "/evaluators", 200] }, () => ListEvaluatorsRequest$, () => ListEvaluatorsResponse$
|
|
3981
4402
|
];
|
|
4403
|
+
export var ListGatewayRules$ = [9, n0, _LGRis,
|
|
4404
|
+
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules", 200] }, () => ListGatewayRulesRequest$, () => ListGatewayRulesResponse$
|
|
4405
|
+
];
|
|
3982
4406
|
export var ListGateways$ = [9, n0, _LG,
|
|
3983
4407
|
{ [_ht]: ["GET", "/gateways/", 200] }, () => ListGatewaysRequest$, () => ListGatewaysResponse$
|
|
3984
4408
|
];
|
|
@@ -4051,12 +4475,18 @@ export var UpdateAgentRuntimeEndpoint$ = [9, n0, _UARE,
|
|
|
4051
4475
|
export var UpdateApiKeyCredentialProvider$ = [9, n0, _UAKCP,
|
|
4052
4476
|
{ [_ht]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200] }, () => UpdateApiKeyCredentialProviderRequest$, () => UpdateApiKeyCredentialProviderResponse$
|
|
4053
4477
|
];
|
|
4478
|
+
export var UpdateConfigurationBundle$ = [9, n0, _UCB,
|
|
4479
|
+
{ [_ht]: ["PUT", "/configuration-bundles/{bundleId}", 200] }, () => UpdateConfigurationBundleRequest$, () => UpdateConfigurationBundleResponse$
|
|
4480
|
+
];
|
|
4054
4481
|
export var UpdateEvaluator$ = [9, n0, _UEp,
|
|
4055
4482
|
{ [_ht]: ["PUT", "/evaluators/{evaluatorId}", 202] }, () => UpdateEvaluatorRequest$, () => UpdateEvaluatorResponse$
|
|
4056
4483
|
];
|
|
4057
4484
|
export var UpdateGateway$ = [9, n0, _UG,
|
|
4058
4485
|
{ [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/", 202] }, () => UpdateGatewayRequest$, () => UpdateGatewayResponse$
|
|
4059
4486
|
];
|
|
4487
|
+
export var UpdateGatewayRule$ = [9, n0, _UGRpd,
|
|
4488
|
+
{ [_ht]: ["PATCH", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => UpdateGatewayRuleRequest$, () => UpdateGatewayRuleResponse$
|
|
4489
|
+
];
|
|
4060
4490
|
export var UpdateGatewayTarget$ = [9, n0, _UGT,
|
|
4061
4491
|
{ [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] }, () => UpdateGatewayTargetRequest$, () => UpdateGatewayTargetResponse$
|
|
4062
4492
|
];
|