@aws-sdk/client-bedrock-agentcore-control 3.929.0 → 3.930.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/dist-cjs/index.js +0 -280
- package/dist-es/models/models_0.js +0 -280
- package/dist-types/models/models_0.d.ts +100 -25
- package/dist-types/ts3.4/models/models_0.d.ts +0 -46
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -227,32 +227,6 @@ const AgentManagedRuntimeType = {
|
|
|
227
227
|
PYTHON_3_12: "PYTHON_3_12",
|
|
228
228
|
PYTHON_3_13: "PYTHON_3_13",
|
|
229
229
|
};
|
|
230
|
-
exports.Code = void 0;
|
|
231
|
-
(function (Code) {
|
|
232
|
-
Code.visit = (value, visitor) => {
|
|
233
|
-
if (value.s3 !== undefined)
|
|
234
|
-
return visitor.s3(value.s3);
|
|
235
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
236
|
-
};
|
|
237
|
-
})(exports.Code || (exports.Code = {}));
|
|
238
|
-
exports.AgentRuntimeArtifact = void 0;
|
|
239
|
-
(function (AgentRuntimeArtifact) {
|
|
240
|
-
AgentRuntimeArtifact.visit = (value, visitor) => {
|
|
241
|
-
if (value.containerConfiguration !== undefined)
|
|
242
|
-
return visitor.containerConfiguration(value.containerConfiguration);
|
|
243
|
-
if (value.codeConfiguration !== undefined)
|
|
244
|
-
return visitor.codeConfiguration(value.codeConfiguration);
|
|
245
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
246
|
-
};
|
|
247
|
-
})(exports.AgentRuntimeArtifact || (exports.AgentRuntimeArtifact = {}));
|
|
248
|
-
exports.AuthorizerConfiguration = void 0;
|
|
249
|
-
(function (AuthorizerConfiguration) {
|
|
250
|
-
AuthorizerConfiguration.visit = (value, visitor) => {
|
|
251
|
-
if (value.customJWTAuthorizer !== undefined)
|
|
252
|
-
return visitor.customJWTAuthorizer(value.customJWTAuthorizer);
|
|
253
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
254
|
-
};
|
|
255
|
-
})(exports.AuthorizerConfiguration || (exports.AuthorizerConfiguration = {}));
|
|
256
230
|
const NetworkMode = {
|
|
257
231
|
PUBLIC: "PUBLIC",
|
|
258
232
|
VPC: "VPC",
|
|
@@ -262,14 +236,6 @@ const ServerProtocol = {
|
|
|
262
236
|
HTTP: "HTTP",
|
|
263
237
|
MCP: "MCP",
|
|
264
238
|
};
|
|
265
|
-
exports.RequestHeaderConfiguration = void 0;
|
|
266
|
-
(function (RequestHeaderConfiguration) {
|
|
267
|
-
RequestHeaderConfiguration.visit = (value, visitor) => {
|
|
268
|
-
if (value.requestHeaderAllowlist !== undefined)
|
|
269
|
-
return visitor.requestHeaderAllowlist(value.requestHeaderAllowlist);
|
|
270
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
271
|
-
};
|
|
272
|
-
})(exports.RequestHeaderConfiguration || (exports.RequestHeaderConfiguration = {}));
|
|
273
239
|
const AgentRuntimeStatus = {
|
|
274
240
|
CREATE_FAILED: "CREATE_FAILED",
|
|
275
241
|
CREATING: "CREATING",
|
|
@@ -365,14 +331,6 @@ const ExceptionLevel = {
|
|
|
365
331
|
const SearchType = {
|
|
366
332
|
SEMANTIC: "SEMANTIC",
|
|
367
333
|
};
|
|
368
|
-
exports.GatewayProtocolConfiguration = void 0;
|
|
369
|
-
(function (GatewayProtocolConfiguration) {
|
|
370
|
-
GatewayProtocolConfiguration.visit = (value, visitor) => {
|
|
371
|
-
if (value.mcp !== undefined)
|
|
372
|
-
return visitor.mcp(value.mcp);
|
|
373
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
374
|
-
};
|
|
375
|
-
})(exports.GatewayProtocolConfiguration || (exports.GatewayProtocolConfiguration = {}));
|
|
376
334
|
const GatewayProtocolType = {
|
|
377
335
|
MCP: "MCP",
|
|
378
336
|
};
|
|
@@ -388,16 +346,6 @@ const ApiKeyCredentialLocation = {
|
|
|
388
346
|
HEADER: "HEADER",
|
|
389
347
|
QUERY_PARAMETER: "QUERY_PARAMETER",
|
|
390
348
|
};
|
|
391
|
-
exports.CredentialProvider = void 0;
|
|
392
|
-
(function (CredentialProvider) {
|
|
393
|
-
CredentialProvider.visit = (value, visitor) => {
|
|
394
|
-
if (value.oauthCredentialProvider !== undefined)
|
|
395
|
-
return visitor.oauthCredentialProvider(value.oauthCredentialProvider);
|
|
396
|
-
if (value.apiKeyCredentialProvider !== undefined)
|
|
397
|
-
return visitor.apiKeyCredentialProvider(value.apiKeyCredentialProvider);
|
|
398
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
399
|
-
};
|
|
400
|
-
})(exports.CredentialProvider || (exports.CredentialProvider = {}));
|
|
401
349
|
const CredentialProviderType = {
|
|
402
350
|
API_KEY: "API_KEY",
|
|
403
351
|
GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE",
|
|
@@ -411,16 +359,6 @@ const SchemaType = {
|
|
|
411
359
|
OBJECT: "object",
|
|
412
360
|
STRING: "string",
|
|
413
361
|
};
|
|
414
|
-
exports.ApiSchemaConfiguration = void 0;
|
|
415
|
-
(function (ApiSchemaConfiguration) {
|
|
416
|
-
ApiSchemaConfiguration.visit = (value, visitor) => {
|
|
417
|
-
if (value.s3 !== undefined)
|
|
418
|
-
return visitor.s3(value.s3);
|
|
419
|
-
if (value.inlinePayload !== undefined)
|
|
420
|
-
return visitor.inlinePayload(value.inlinePayload);
|
|
421
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
422
|
-
};
|
|
423
|
-
})(exports.ApiSchemaConfiguration || (exports.ApiSchemaConfiguration = {}));
|
|
424
362
|
const TargetStatus = {
|
|
425
363
|
CREATING: "CREATING",
|
|
426
364
|
DELETING: "DELETING",
|
|
@@ -435,102 +373,12 @@ const KeyType = {
|
|
|
435
373
|
CustomerManagedKey: "CustomerManagedKey",
|
|
436
374
|
ServiceManagedKey: "ServiceManagedKey",
|
|
437
375
|
};
|
|
438
|
-
exports.TriggerConditionInput = void 0;
|
|
439
|
-
(function (TriggerConditionInput) {
|
|
440
|
-
TriggerConditionInput.visit = (value, visitor) => {
|
|
441
|
-
if (value.messageBasedTrigger !== undefined)
|
|
442
|
-
return visitor.messageBasedTrigger(value.messageBasedTrigger);
|
|
443
|
-
if (value.tokenBasedTrigger !== undefined)
|
|
444
|
-
return visitor.tokenBasedTrigger(value.tokenBasedTrigger);
|
|
445
|
-
if (value.timeBasedTrigger !== undefined)
|
|
446
|
-
return visitor.timeBasedTrigger(value.timeBasedTrigger);
|
|
447
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
448
|
-
};
|
|
449
|
-
})(exports.TriggerConditionInput || (exports.TriggerConditionInput = {}));
|
|
450
|
-
exports.CustomConfigurationInput = void 0;
|
|
451
|
-
(function (CustomConfigurationInput) {
|
|
452
|
-
CustomConfigurationInput.visit = (value, visitor) => {
|
|
453
|
-
if (value.semanticOverride !== undefined)
|
|
454
|
-
return visitor.semanticOverride(value.semanticOverride);
|
|
455
|
-
if (value.summaryOverride !== undefined)
|
|
456
|
-
return visitor.summaryOverride(value.summaryOverride);
|
|
457
|
-
if (value.userPreferenceOverride !== undefined)
|
|
458
|
-
return visitor.userPreferenceOverride(value.userPreferenceOverride);
|
|
459
|
-
if (value.selfManagedConfiguration !== undefined)
|
|
460
|
-
return visitor.selfManagedConfiguration(value.selfManagedConfiguration);
|
|
461
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
462
|
-
};
|
|
463
|
-
})(exports.CustomConfigurationInput || (exports.CustomConfigurationInput = {}));
|
|
464
|
-
exports.MemoryStrategyInput = void 0;
|
|
465
|
-
(function (MemoryStrategyInput) {
|
|
466
|
-
MemoryStrategyInput.visit = (value, visitor) => {
|
|
467
|
-
if (value.semanticMemoryStrategy !== undefined)
|
|
468
|
-
return visitor.semanticMemoryStrategy(value.semanticMemoryStrategy);
|
|
469
|
-
if (value.summaryMemoryStrategy !== undefined)
|
|
470
|
-
return visitor.summaryMemoryStrategy(value.summaryMemoryStrategy);
|
|
471
|
-
if (value.userPreferenceMemoryStrategy !== undefined)
|
|
472
|
-
return visitor.userPreferenceMemoryStrategy(value.userPreferenceMemoryStrategy);
|
|
473
|
-
if (value.customMemoryStrategy !== undefined)
|
|
474
|
-
return visitor.customMemoryStrategy(value.customMemoryStrategy);
|
|
475
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
476
|
-
};
|
|
477
|
-
})(exports.MemoryStrategyInput || (exports.MemoryStrategyInput = {}));
|
|
478
376
|
const MemoryStatus = {
|
|
479
377
|
ACTIVE: "ACTIVE",
|
|
480
378
|
CREATING: "CREATING",
|
|
481
379
|
DELETING: "DELETING",
|
|
482
380
|
FAILED: "FAILED",
|
|
483
381
|
};
|
|
484
|
-
exports.CustomConsolidationConfiguration = void 0;
|
|
485
|
-
(function (CustomConsolidationConfiguration) {
|
|
486
|
-
CustomConsolidationConfiguration.visit = (value, visitor) => {
|
|
487
|
-
if (value.semanticConsolidationOverride !== undefined)
|
|
488
|
-
return visitor.semanticConsolidationOverride(value.semanticConsolidationOverride);
|
|
489
|
-
if (value.summaryConsolidationOverride !== undefined)
|
|
490
|
-
return visitor.summaryConsolidationOverride(value.summaryConsolidationOverride);
|
|
491
|
-
if (value.userPreferenceConsolidationOverride !== undefined)
|
|
492
|
-
return visitor.userPreferenceConsolidationOverride(value.userPreferenceConsolidationOverride);
|
|
493
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
494
|
-
};
|
|
495
|
-
})(exports.CustomConsolidationConfiguration || (exports.CustomConsolidationConfiguration = {}));
|
|
496
|
-
exports.ConsolidationConfiguration = void 0;
|
|
497
|
-
(function (ConsolidationConfiguration) {
|
|
498
|
-
ConsolidationConfiguration.visit = (value, visitor) => {
|
|
499
|
-
if (value.customConsolidationConfiguration !== undefined)
|
|
500
|
-
return visitor.customConsolidationConfiguration(value.customConsolidationConfiguration);
|
|
501
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
502
|
-
};
|
|
503
|
-
})(exports.ConsolidationConfiguration || (exports.ConsolidationConfiguration = {}));
|
|
504
|
-
exports.CustomExtractionConfiguration = void 0;
|
|
505
|
-
(function (CustomExtractionConfiguration) {
|
|
506
|
-
CustomExtractionConfiguration.visit = (value, visitor) => {
|
|
507
|
-
if (value.semanticExtractionOverride !== undefined)
|
|
508
|
-
return visitor.semanticExtractionOverride(value.semanticExtractionOverride);
|
|
509
|
-
if (value.userPreferenceExtractionOverride !== undefined)
|
|
510
|
-
return visitor.userPreferenceExtractionOverride(value.userPreferenceExtractionOverride);
|
|
511
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
512
|
-
};
|
|
513
|
-
})(exports.CustomExtractionConfiguration || (exports.CustomExtractionConfiguration = {}));
|
|
514
|
-
exports.ExtractionConfiguration = void 0;
|
|
515
|
-
(function (ExtractionConfiguration) {
|
|
516
|
-
ExtractionConfiguration.visit = (value, visitor) => {
|
|
517
|
-
if (value.customExtractionConfiguration !== undefined)
|
|
518
|
-
return visitor.customExtractionConfiguration(value.customExtractionConfiguration);
|
|
519
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
520
|
-
};
|
|
521
|
-
})(exports.ExtractionConfiguration || (exports.ExtractionConfiguration = {}));
|
|
522
|
-
exports.TriggerCondition = void 0;
|
|
523
|
-
(function (TriggerCondition) {
|
|
524
|
-
TriggerCondition.visit = (value, visitor) => {
|
|
525
|
-
if (value.messageBasedTrigger !== undefined)
|
|
526
|
-
return visitor.messageBasedTrigger(value.messageBasedTrigger);
|
|
527
|
-
if (value.tokenBasedTrigger !== undefined)
|
|
528
|
-
return visitor.tokenBasedTrigger(value.tokenBasedTrigger);
|
|
529
|
-
if (value.timeBasedTrigger !== undefined)
|
|
530
|
-
return visitor.timeBasedTrigger(value.timeBasedTrigger);
|
|
531
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
532
|
-
};
|
|
533
|
-
})(exports.TriggerCondition || (exports.TriggerCondition = {}));
|
|
534
382
|
const OverrideType = {
|
|
535
383
|
SELF_MANAGED: "SELF_MANAGED",
|
|
536
384
|
SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE",
|
|
@@ -575,44 +423,6 @@ let ThrottledException$1 = class ThrottledException extends BedrockAgentCoreCont
|
|
|
575
423
|
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
576
424
|
}
|
|
577
425
|
};
|
|
578
|
-
exports.CustomConsolidationConfigurationInput = void 0;
|
|
579
|
-
(function (CustomConsolidationConfigurationInput) {
|
|
580
|
-
CustomConsolidationConfigurationInput.visit = (value, visitor) => {
|
|
581
|
-
if (value.semanticConsolidationOverride !== undefined)
|
|
582
|
-
return visitor.semanticConsolidationOverride(value.semanticConsolidationOverride);
|
|
583
|
-
if (value.summaryConsolidationOverride !== undefined)
|
|
584
|
-
return visitor.summaryConsolidationOverride(value.summaryConsolidationOverride);
|
|
585
|
-
if (value.userPreferenceConsolidationOverride !== undefined)
|
|
586
|
-
return visitor.userPreferenceConsolidationOverride(value.userPreferenceConsolidationOverride);
|
|
587
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
588
|
-
};
|
|
589
|
-
})(exports.CustomConsolidationConfigurationInput || (exports.CustomConsolidationConfigurationInput = {}));
|
|
590
|
-
exports.ModifyConsolidationConfiguration = void 0;
|
|
591
|
-
(function (ModifyConsolidationConfiguration) {
|
|
592
|
-
ModifyConsolidationConfiguration.visit = (value, visitor) => {
|
|
593
|
-
if (value.customConsolidationConfiguration !== undefined)
|
|
594
|
-
return visitor.customConsolidationConfiguration(value.customConsolidationConfiguration);
|
|
595
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
596
|
-
};
|
|
597
|
-
})(exports.ModifyConsolidationConfiguration || (exports.ModifyConsolidationConfiguration = {}));
|
|
598
|
-
exports.CustomExtractionConfigurationInput = void 0;
|
|
599
|
-
(function (CustomExtractionConfigurationInput) {
|
|
600
|
-
CustomExtractionConfigurationInput.visit = (value, visitor) => {
|
|
601
|
-
if (value.semanticExtractionOverride !== undefined)
|
|
602
|
-
return visitor.semanticExtractionOverride(value.semanticExtractionOverride);
|
|
603
|
-
if (value.userPreferenceExtractionOverride !== undefined)
|
|
604
|
-
return visitor.userPreferenceExtractionOverride(value.userPreferenceExtractionOverride);
|
|
605
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
606
|
-
};
|
|
607
|
-
})(exports.CustomExtractionConfigurationInput || (exports.CustomExtractionConfigurationInput = {}));
|
|
608
|
-
exports.ModifyExtractionConfiguration = void 0;
|
|
609
|
-
(function (ModifyExtractionConfiguration) {
|
|
610
|
-
ModifyExtractionConfiguration.visit = (value, visitor) => {
|
|
611
|
-
if (value.customExtractionConfiguration !== undefined)
|
|
612
|
-
return visitor.customExtractionConfiguration(value.customExtractionConfiguration);
|
|
613
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
614
|
-
};
|
|
615
|
-
})(exports.ModifyExtractionConfiguration || (exports.ModifyExtractionConfiguration = {}));
|
|
616
426
|
const CredentialProviderVendorType = {
|
|
617
427
|
AtlassianOauth2: "AtlassianOauth2",
|
|
618
428
|
Auth0Oauth2: "Auth0Oauth2",
|
|
@@ -640,64 +450,6 @@ const CredentialProviderVendorType = {
|
|
|
640
450
|
YandexOauth2: "YandexOauth2",
|
|
641
451
|
ZoomOauth2: "ZoomOauth2",
|
|
642
452
|
};
|
|
643
|
-
exports.Oauth2Discovery = void 0;
|
|
644
|
-
(function (Oauth2Discovery) {
|
|
645
|
-
Oauth2Discovery.visit = (value, visitor) => {
|
|
646
|
-
if (value.discoveryUrl !== undefined)
|
|
647
|
-
return visitor.discoveryUrl(value.discoveryUrl);
|
|
648
|
-
if (value.authorizationServerMetadata !== undefined)
|
|
649
|
-
return visitor.authorizationServerMetadata(value.authorizationServerMetadata);
|
|
650
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
651
|
-
};
|
|
652
|
-
})(exports.Oauth2Discovery || (exports.Oauth2Discovery = {}));
|
|
653
|
-
exports.Oauth2ProviderConfigInput = void 0;
|
|
654
|
-
(function (Oauth2ProviderConfigInput) {
|
|
655
|
-
Oauth2ProviderConfigInput.visit = (value, visitor) => {
|
|
656
|
-
if (value.customOauth2ProviderConfig !== undefined)
|
|
657
|
-
return visitor.customOauth2ProviderConfig(value.customOauth2ProviderConfig);
|
|
658
|
-
if (value.googleOauth2ProviderConfig !== undefined)
|
|
659
|
-
return visitor.googleOauth2ProviderConfig(value.googleOauth2ProviderConfig);
|
|
660
|
-
if (value.githubOauth2ProviderConfig !== undefined)
|
|
661
|
-
return visitor.githubOauth2ProviderConfig(value.githubOauth2ProviderConfig);
|
|
662
|
-
if (value.slackOauth2ProviderConfig !== undefined)
|
|
663
|
-
return visitor.slackOauth2ProviderConfig(value.slackOauth2ProviderConfig);
|
|
664
|
-
if (value.salesforceOauth2ProviderConfig !== undefined)
|
|
665
|
-
return visitor.salesforceOauth2ProviderConfig(value.salesforceOauth2ProviderConfig);
|
|
666
|
-
if (value.microsoftOauth2ProviderConfig !== undefined)
|
|
667
|
-
return visitor.microsoftOauth2ProviderConfig(value.microsoftOauth2ProviderConfig);
|
|
668
|
-
if (value.atlassianOauth2ProviderConfig !== undefined)
|
|
669
|
-
return visitor.atlassianOauth2ProviderConfig(value.atlassianOauth2ProviderConfig);
|
|
670
|
-
if (value.linkedinOauth2ProviderConfig !== undefined)
|
|
671
|
-
return visitor.linkedinOauth2ProviderConfig(value.linkedinOauth2ProviderConfig);
|
|
672
|
-
if (value.includedOauth2ProviderConfig !== undefined)
|
|
673
|
-
return visitor.includedOauth2ProviderConfig(value.includedOauth2ProviderConfig);
|
|
674
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
675
|
-
};
|
|
676
|
-
})(exports.Oauth2ProviderConfigInput || (exports.Oauth2ProviderConfigInput = {}));
|
|
677
|
-
exports.Oauth2ProviderConfigOutput = void 0;
|
|
678
|
-
(function (Oauth2ProviderConfigOutput) {
|
|
679
|
-
Oauth2ProviderConfigOutput.visit = (value, visitor) => {
|
|
680
|
-
if (value.customOauth2ProviderConfig !== undefined)
|
|
681
|
-
return visitor.customOauth2ProviderConfig(value.customOauth2ProviderConfig);
|
|
682
|
-
if (value.googleOauth2ProviderConfig !== undefined)
|
|
683
|
-
return visitor.googleOauth2ProviderConfig(value.googleOauth2ProviderConfig);
|
|
684
|
-
if (value.githubOauth2ProviderConfig !== undefined)
|
|
685
|
-
return visitor.githubOauth2ProviderConfig(value.githubOauth2ProviderConfig);
|
|
686
|
-
if (value.slackOauth2ProviderConfig !== undefined)
|
|
687
|
-
return visitor.slackOauth2ProviderConfig(value.slackOauth2ProviderConfig);
|
|
688
|
-
if (value.salesforceOauth2ProviderConfig !== undefined)
|
|
689
|
-
return visitor.salesforceOauth2ProviderConfig(value.salesforceOauth2ProviderConfig);
|
|
690
|
-
if (value.microsoftOauth2ProviderConfig !== undefined)
|
|
691
|
-
return visitor.microsoftOauth2ProviderConfig(value.microsoftOauth2ProviderConfig);
|
|
692
|
-
if (value.atlassianOauth2ProviderConfig !== undefined)
|
|
693
|
-
return visitor.atlassianOauth2ProviderConfig(value.atlassianOauth2ProviderConfig);
|
|
694
|
-
if (value.linkedinOauth2ProviderConfig !== undefined)
|
|
695
|
-
return visitor.linkedinOauth2ProviderConfig(value.linkedinOauth2ProviderConfig);
|
|
696
|
-
if (value.includedOauth2ProviderConfig !== undefined)
|
|
697
|
-
return visitor.includedOauth2ProviderConfig(value.includedOauth2ProviderConfig);
|
|
698
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
699
|
-
};
|
|
700
|
-
})(exports.Oauth2ProviderConfigOutput || (exports.Oauth2ProviderConfigOutput = {}));
|
|
701
453
|
let ConcurrentModificationException$1 = class ConcurrentModificationException extends BedrockAgentCoreControlServiceException$1 {
|
|
702
454
|
name = "ConcurrentModificationException";
|
|
703
455
|
$fault = "client";
|
|
@@ -710,38 +462,6 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
|
|
|
710
462
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
711
463
|
}
|
|
712
464
|
};
|
|
713
|
-
exports.ToolSchema = void 0;
|
|
714
|
-
(function (ToolSchema) {
|
|
715
|
-
ToolSchema.visit = (value, visitor) => {
|
|
716
|
-
if (value.s3 !== undefined)
|
|
717
|
-
return visitor.s3(value.s3);
|
|
718
|
-
if (value.inlinePayload !== undefined)
|
|
719
|
-
return visitor.inlinePayload(value.inlinePayload);
|
|
720
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
721
|
-
};
|
|
722
|
-
})(exports.ToolSchema || (exports.ToolSchema = {}));
|
|
723
|
-
exports.McpTargetConfiguration = void 0;
|
|
724
|
-
(function (McpTargetConfiguration) {
|
|
725
|
-
McpTargetConfiguration.visit = (value, visitor) => {
|
|
726
|
-
if (value.openApiSchema !== undefined)
|
|
727
|
-
return visitor.openApiSchema(value.openApiSchema);
|
|
728
|
-
if (value.smithyModel !== undefined)
|
|
729
|
-
return visitor.smithyModel(value.smithyModel);
|
|
730
|
-
if (value.lambda !== undefined)
|
|
731
|
-
return visitor.lambda(value.lambda);
|
|
732
|
-
if (value.mcpServer !== undefined)
|
|
733
|
-
return visitor.mcpServer(value.mcpServer);
|
|
734
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
735
|
-
};
|
|
736
|
-
})(exports.McpTargetConfiguration || (exports.McpTargetConfiguration = {}));
|
|
737
|
-
exports.TargetConfiguration = void 0;
|
|
738
|
-
(function (TargetConfiguration) {
|
|
739
|
-
TargetConfiguration.visit = (value, visitor) => {
|
|
740
|
-
if (value.mcp !== undefined)
|
|
741
|
-
return visitor.mcp(value.mcp);
|
|
742
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
743
|
-
};
|
|
744
|
-
})(exports.TargetConfiguration || (exports.TargetConfiguration = {}));
|
|
745
465
|
|
|
746
466
|
const _AC = "AuthorizerConfiguration";
|
|
747
467
|
const _ADE = "AccessDeniedException";
|