@aws-sdk/client-bedrock-agentcore-control 3.907.0 → 3.909.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +234 -21
  3. package/dist-es/BedrockAgentCoreControl.js +2 -0
  4. package/dist-es/commands/CreateAgentRuntimeEndpointCommand.js +2 -2
  5. package/dist-es/commands/DeleteAgentRuntimeEndpointCommand.js +2 -2
  6. package/dist-es/commands/SynchronizeGatewayTargetsCommand.js +23 -0
  7. package/dist-es/commands/index.js +1 -0
  8. package/dist-es/models/models_0.js +115 -0
  9. package/dist-es/protocols/Aws_restJson1.js +91 -19
  10. package/dist-types/BedrockAgentCoreControl.d.ts +7 -0
  11. package/dist-types/BedrockAgentCoreControlClient.d.ts +3 -2
  12. package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +2 -0
  13. package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +3 -0
  14. package/dist-types/commands/CreateGatewayCommand.d.ts +1 -1
  15. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +9 -2
  16. package/dist-types/commands/CreateMemoryCommand.d.ts +41 -1
  17. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +127 -1
  18. package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +3 -0
  19. package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +1 -0
  20. package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +2 -0
  21. package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +1 -1
  22. package/dist-types/commands/GetGatewayTargetCommand.d.ts +5 -1
  23. package/dist-types/commands/GetMemoryCommand.d.ts +21 -1
  24. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +35 -1
  25. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +1 -1
  27. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +192 -0
  28. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +9 -2
  29. package/dist-types/commands/UpdateMemoryCommand.d.ts +61 -1
  30. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +55 -2
  31. package/dist-types/commands/index.d.ts +1 -0
  32. package/dist-types/models/models_0.d.ts +899 -51
  33. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  34. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +17 -0
  35. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +6 -0
  36. package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +418 -13
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  40. package/package.json +14 -14
package/dist-cjs/index.js CHANGED
@@ -411,6 +411,8 @@ const TargetStatus = {
411
411
  DELETING: "DELETING",
412
412
  FAILED: "FAILED",
413
413
  READY: "READY",
414
+ SYNCHRONIZE_UNSUCCESSFUL: "SYNCHRONIZE_UNSUCCESSFUL",
415
+ SYNCHRONIZING: "SYNCHRONIZING",
414
416
  UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL",
415
417
  UPDATING: "UPDATING",
416
418
  };
@@ -418,6 +420,18 @@ const KeyType = {
418
420
  CustomerManagedKey: "CustomerManagedKey",
419
421
  ServiceManagedKey: "ServiceManagedKey",
420
422
  };
423
+ exports.TriggerConditionInput = void 0;
424
+ (function (TriggerConditionInput) {
425
+ TriggerConditionInput.visit = (value, visitor) => {
426
+ if (value.messageBasedTrigger !== undefined)
427
+ return visitor.messageBasedTrigger(value.messageBasedTrigger);
428
+ if (value.tokenBasedTrigger !== undefined)
429
+ return visitor.tokenBasedTrigger(value.tokenBasedTrigger);
430
+ if (value.timeBasedTrigger !== undefined)
431
+ return visitor.timeBasedTrigger(value.timeBasedTrigger);
432
+ return visitor._(value.$unknown[0], value.$unknown[1]);
433
+ };
434
+ })(exports.TriggerConditionInput || (exports.TriggerConditionInput = {}));
421
435
  exports.CustomConfigurationInput = void 0;
422
436
  (function (CustomConfigurationInput) {
423
437
  CustomConfigurationInput.visit = (value, visitor) => {
@@ -427,6 +441,8 @@ exports.CustomConfigurationInput = void 0;
427
441
  return visitor.summaryOverride(value.summaryOverride);
428
442
  if (value.userPreferenceOverride !== undefined)
429
443
  return visitor.userPreferenceOverride(value.userPreferenceOverride);
444
+ if (value.selfManagedConfiguration !== undefined)
445
+ return visitor.selfManagedConfiguration(value.selfManagedConfiguration);
430
446
  return visitor._(value.$unknown[0], value.$unknown[1]);
431
447
  };
432
448
  })(exports.CustomConfigurationInput || (exports.CustomConfigurationInput = {}));
@@ -488,7 +504,20 @@ exports.ExtractionConfiguration = void 0;
488
504
  return visitor._(value.$unknown[0], value.$unknown[1]);
489
505
  };
490
506
  })(exports.ExtractionConfiguration || (exports.ExtractionConfiguration = {}));
507
+ exports.TriggerCondition = void 0;
508
+ (function (TriggerCondition) {
509
+ TriggerCondition.visit = (value, visitor) => {
510
+ if (value.messageBasedTrigger !== undefined)
511
+ return visitor.messageBasedTrigger(value.messageBasedTrigger);
512
+ if (value.tokenBasedTrigger !== undefined)
513
+ return visitor.tokenBasedTrigger(value.tokenBasedTrigger);
514
+ if (value.timeBasedTrigger !== undefined)
515
+ return visitor.timeBasedTrigger(value.timeBasedTrigger);
516
+ return visitor._(value.$unknown[0], value.$unknown[1]);
517
+ };
518
+ })(exports.TriggerCondition || (exports.TriggerCondition = {}));
491
519
  const OverrideType = {
520
+ SELF_MANAGED: "SELF_MANAGED",
492
521
  SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE",
493
522
  SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE",
494
523
  USER_PREFERENCE_OVERRIDE: "USER_PREFERENCE_OVERRIDE",
@@ -570,12 +599,31 @@ exports.ModifyExtractionConfiguration = void 0;
570
599
  };
571
600
  })(exports.ModifyExtractionConfiguration || (exports.ModifyExtractionConfiguration = {}));
572
601
  const CredentialProviderVendorType = {
602
+ AtlassianOauth2: "AtlassianOauth2",
603
+ Auth0Oauth2: "Auth0Oauth2",
604
+ CognitoOauth2: "CognitoOauth2",
573
605
  CustomOauth2: "CustomOauth2",
606
+ CyberArkOauth2: "CyberArkOauth2",
607
+ DropboxOauth2: "DropboxOauth2",
608
+ FacebookOauth2: "FacebookOauth2",
609
+ FusionAuthOauth2: "FusionAuthOauth2",
574
610
  GithubOauth2: "GithubOauth2",
575
611
  GoogleOauth2: "GoogleOauth2",
612
+ HubspotOauth2: "HubspotOauth2",
613
+ LinkedinOauth2: "LinkedinOauth2",
576
614
  MicrosoftOauth2: "MicrosoftOauth2",
615
+ NotionOauth2: "NotionOauth2",
616
+ OktaOauth2: "OktaOauth2",
617
+ OneLoginOauth2: "OneLoginOauth2",
618
+ PingOneOauth2: "PingOneOauth2",
619
+ RedditOauth2: "RedditOauth2",
577
620
  SalesforceOauth2: "SalesforceOauth2",
578
621
  SlackOauth2: "SlackOauth2",
622
+ SpotifyOauth2: "SpotifyOauth2",
623
+ TwitchOauth2: "TwitchOauth2",
624
+ XOauth2: "XOauth2",
625
+ YandexOauth2: "YandexOauth2",
626
+ ZoomOauth2: "ZoomOauth2",
579
627
  };
580
628
  exports.Oauth2Discovery = void 0;
581
629
  (function (Oauth2Discovery) {
@@ -602,6 +650,12 @@ exports.Oauth2ProviderConfigInput = void 0;
602
650
  return visitor.salesforceOauth2ProviderConfig(value.salesforceOauth2ProviderConfig);
603
651
  if (value.microsoftOauth2ProviderConfig !== undefined)
604
652
  return visitor.microsoftOauth2ProviderConfig(value.microsoftOauth2ProviderConfig);
653
+ if (value.atlassianOauth2ProviderConfig !== undefined)
654
+ return visitor.atlassianOauth2ProviderConfig(value.atlassianOauth2ProviderConfig);
655
+ if (value.linkedinOauth2ProviderConfig !== undefined)
656
+ return visitor.linkedinOauth2ProviderConfig(value.linkedinOauth2ProviderConfig);
657
+ if (value.includedOauth2ProviderConfig !== undefined)
658
+ return visitor.includedOauth2ProviderConfig(value.includedOauth2ProviderConfig);
605
659
  return visitor._(value.$unknown[0], value.$unknown[1]);
606
660
  };
607
661
  })(exports.Oauth2ProviderConfigInput || (exports.Oauth2ProviderConfigInput = {}));
@@ -620,6 +674,12 @@ exports.Oauth2ProviderConfigOutput = void 0;
620
674
  return visitor.salesforceOauth2ProviderConfig(value.salesforceOauth2ProviderConfig);
621
675
  if (value.microsoftOauth2ProviderConfig !== undefined)
622
676
  return visitor.microsoftOauth2ProviderConfig(value.microsoftOauth2ProviderConfig);
677
+ if (value.atlassianOauth2ProviderConfig !== undefined)
678
+ return visitor.atlassianOauth2ProviderConfig(value.atlassianOauth2ProviderConfig);
679
+ if (value.linkedinOauth2ProviderConfig !== undefined)
680
+ return visitor.linkedinOauth2ProviderConfig(value.linkedinOauth2ProviderConfig);
681
+ if (value.includedOauth2ProviderConfig !== undefined)
682
+ return visitor.includedOauth2ProviderConfig(value.includedOauth2ProviderConfig);
623
683
  return visitor._(value.$unknown[0], value.$unknown[1]);
624
684
  };
625
685
  })(exports.Oauth2ProviderConfigOutput || (exports.Oauth2ProviderConfigOutput = {}));
@@ -654,6 +714,8 @@ exports.McpTargetConfiguration = void 0;
654
714
  return visitor.smithyModel(value.smithyModel);
655
715
  if (value.lambda !== undefined)
656
716
  return visitor.lambda(value.lambda);
717
+ if (value.mcpServer !== undefined)
718
+ return visitor.mcpServer(value.mcpServer);
657
719
  return visitor._(value.$unknown[0], value.$unknown[1]);
658
720
  };
659
721
  })(exports.McpTargetConfiguration || (exports.McpTargetConfiguration = {}));
@@ -669,10 +731,18 @@ const CreateAgentRuntimeEndpointRequestFilterSensitiveLog = (obj) => ({
669
731
  ...obj,
670
732
  ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
671
733
  });
734
+ const CreateAgentRuntimeEndpointResponseFilterSensitiveLog = (obj) => ({
735
+ ...obj,
736
+ ...(obj.endpointName && { endpointName: smithyClient.SENSITIVE_STRING }),
737
+ });
672
738
  const DeleteAgentRuntimeEndpointRequestFilterSensitiveLog = (obj) => ({
673
739
  ...obj,
674
740
  ...(obj.endpointName && { endpointName: smithyClient.SENSITIVE_STRING }),
675
741
  });
742
+ const DeleteAgentRuntimeEndpointResponseFilterSensitiveLog = (obj) => ({
743
+ ...obj,
744
+ ...(obj.endpointName && { endpointName: smithyClient.SENSITIVE_STRING }),
745
+ });
676
746
  const GetAgentRuntimeEndpointRequestFilterSensitiveLog = (obj) => ({
677
747
  ...obj,
678
748
  ...(obj.endpointName && { endpointName: smithyClient.SENSITIVE_STRING }),
@@ -903,6 +973,8 @@ const CustomConfigurationInputFilterSensitiveLog = (obj) => {
903
973
  return {
904
974
  userPreferenceOverride: UserPreferenceOverrideConfigurationInputFilterSensitiveLog(obj.userPreferenceOverride),
905
975
  };
976
+ if (obj.selfManagedConfiguration !== undefined)
977
+ return { selfManagedConfiguration: obj.selfManagedConfiguration };
906
978
  if (obj.$unknown !== undefined)
907
979
  return { [obj.$unknown[0]]: "UNKNOWN" };
908
980
  };
@@ -1010,6 +1082,7 @@ const StrategyConfigurationFilterSensitiveLog = (obj) => ({
1010
1082
  ...obj,
1011
1083
  ...(obj.extraction && { extraction: ExtractionConfigurationFilterSensitiveLog(obj.extraction) }),
1012
1084
  ...(obj.consolidation && { consolidation: ConsolidationConfigurationFilterSensitiveLog(obj.consolidation) }),
1085
+ ...(obj.selfManagedConfiguration && { selfManagedConfiguration: obj.selfManagedConfiguration }),
1013
1086
  });
1014
1087
  const MemoryStrategyFilterSensitiveLog = (obj) => ({
1015
1088
  ...obj,
@@ -1077,6 +1150,7 @@ const ModifyStrategyConfigurationFilterSensitiveLog = (obj) => ({
1077
1150
  ...obj,
1078
1151
  ...(obj.extraction && { extraction: ModifyExtractionConfigurationFilterSensitiveLog(obj.extraction) }),
1079
1152
  ...(obj.consolidation && { consolidation: ModifyConsolidationConfigurationFilterSensitiveLog(obj.consolidation) }),
1153
+ ...(obj.selfManagedConfiguration && { selfManagedConfiguration: obj.selfManagedConfiguration }),
1080
1154
  });
1081
1155
  const ModifyMemoryStrategyInputFilterSensitiveLog = (obj) => ({
1082
1156
  ...obj,
@@ -1101,6 +1175,10 @@ const UpdateMemoryOutputFilterSensitiveLog = (obj) => ({
1101
1175
  ...obj,
1102
1176
  ...(obj.memory && { memory: MemoryFilterSensitiveLog(obj.memory) }),
1103
1177
  });
1178
+ const AtlassianOauth2ProviderConfigInputFilterSensitiveLog = (obj) => ({
1179
+ ...obj,
1180
+ ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
1181
+ });
1104
1182
  const CustomOauth2ProviderConfigInputFilterSensitiveLog = (obj) => ({
1105
1183
  ...obj,
1106
1184
  ...(obj.oauthDiscovery && { oauthDiscovery: obj.oauthDiscovery }),
@@ -1114,6 +1192,14 @@ const GoogleOauth2ProviderConfigInputFilterSensitiveLog = (obj) => ({
1114
1192
  ...obj,
1115
1193
  ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
1116
1194
  });
1195
+ const IncludedOauth2ProviderConfigInputFilterSensitiveLog = (obj) => ({
1196
+ ...obj,
1197
+ ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
1198
+ });
1199
+ const LinkedinOauth2ProviderConfigInputFilterSensitiveLog = (obj) => ({
1200
+ ...obj,
1201
+ ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
1202
+ });
1117
1203
  const MicrosoftOauth2ProviderConfigInputFilterSensitiveLog = (obj) => ({
1118
1204
  ...obj,
1119
1205
  ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
@@ -1151,6 +1237,18 @@ const Oauth2ProviderConfigInputFilterSensitiveLog = (obj) => {
1151
1237
  return {
1152
1238
  microsoftOauth2ProviderConfig: MicrosoftOauth2ProviderConfigInputFilterSensitiveLog(obj.microsoftOauth2ProviderConfig),
1153
1239
  };
1240
+ if (obj.atlassianOauth2ProviderConfig !== undefined)
1241
+ return {
1242
+ atlassianOauth2ProviderConfig: AtlassianOauth2ProviderConfigInputFilterSensitiveLog(obj.atlassianOauth2ProviderConfig),
1243
+ };
1244
+ if (obj.linkedinOauth2ProviderConfig !== undefined)
1245
+ return {
1246
+ linkedinOauth2ProviderConfig: LinkedinOauth2ProviderConfigInputFilterSensitiveLog(obj.linkedinOauth2ProviderConfig),
1247
+ };
1248
+ if (obj.includedOauth2ProviderConfig !== undefined)
1249
+ return {
1250
+ includedOauth2ProviderConfig: IncludedOauth2ProviderConfigInputFilterSensitiveLog(obj.includedOauth2ProviderConfig),
1251
+ };
1154
1252
  if (obj.$unknown !== undefined)
1155
1253
  return { [obj.$unknown[0]]: "UNKNOWN" };
1156
1254
  };
@@ -1173,6 +1271,8 @@ const McpTargetConfigurationFilterSensitiveLog = (obj) => {
1173
1271
  return { smithyModel: ApiSchemaConfigurationFilterSensitiveLog(obj.smithyModel) };
1174
1272
  if (obj.lambda !== undefined)
1175
1273
  return { lambda: obj.lambda };
1274
+ if (obj.mcpServer !== undefined)
1275
+ return { mcpServer: obj.mcpServer };
1176
1276
  if (obj.$unknown !== undefined)
1177
1277
  return { [obj.$unknown[0]]: "UNKNOWN" };
1178
1278
  };
@@ -1204,6 +1304,17 @@ const CreateGatewayTargetResponseFilterSensitiveLog = (obj) => ({
1204
1304
  credentialProviderConfigurations: obj.credentialProviderConfigurations.map((item) => CredentialProviderConfigurationFilterSensitiveLog(item)),
1205
1305
  }),
1206
1306
  });
1307
+ const GatewayTargetFilterSensitiveLog = (obj) => ({
1308
+ ...obj,
1309
+ ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
1310
+ ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
1311
+ ...(obj.targetConfiguration && {
1312
+ targetConfiguration: TargetConfigurationFilterSensitiveLog(obj.targetConfiguration),
1313
+ }),
1314
+ ...(obj.credentialProviderConfigurations && {
1315
+ credentialProviderConfigurations: obj.credentialProviderConfigurations.map((item) => CredentialProviderConfigurationFilterSensitiveLog(item)),
1316
+ }),
1317
+ });
1207
1318
  const GetGatewayTargetResponseFilterSensitiveLog = (obj) => ({
1208
1319
  ...obj,
1209
1320
  ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
@@ -1237,6 +1348,10 @@ const UpdateGatewayTargetResponseFilterSensitiveLog = (obj) => ({
1237
1348
  credentialProviderConfigurations: obj.credentialProviderConfigurations.map((item) => CredentialProviderConfigurationFilterSensitiveLog(item)),
1238
1349
  }),
1239
1350
  });
1351
+ const SynchronizeGatewayTargetsResponseFilterSensitiveLog = (obj) => ({
1352
+ ...obj,
1353
+ ...(obj.targets && { targets: obj.targets.map((item) => GatewayTargetFilterSensitiveLog(item)) }),
1354
+ });
1240
1355
 
1241
1356
  const se_CreateAgentRuntimeCommand = async (input, context) => {
1242
1357
  const b = core.requestBuilder(input, context);
@@ -1290,6 +1405,7 @@ const se_CreateApiKeyCredentialProviderCommand = async (input, context) => {
1290
1405
  body = JSON.stringify(smithyClient.take(input, {
1291
1406
  apiKey: [],
1292
1407
  name: [],
1408
+ tags: (_) => smithyClient._json(_),
1293
1409
  }));
1294
1410
  b.m("POST").h(headers).b(body);
1295
1411
  return b.build();
@@ -1403,6 +1519,7 @@ const se_CreateOauth2CredentialProviderCommand = async (input, context) => {
1403
1519
  credentialProviderVendor: [],
1404
1520
  name: [],
1405
1521
  oauth2ProviderConfigInput: (_) => smithyClient._json(_),
1522
+ tags: (_) => smithyClient._json(_),
1406
1523
  }));
1407
1524
  b.m("POST").h(headers).b(body);
1408
1525
  return b.build();
@@ -1417,6 +1534,7 @@ const se_CreateWorkloadIdentityCommand = async (input, context) => {
1417
1534
  body = JSON.stringify(smithyClient.take(input, {
1418
1535
  allowedResourceOauth2ReturnUrls: (_) => smithyClient._json(_),
1419
1536
  name: [],
1537
+ tags: (_) => smithyClient._json(_),
1420
1538
  }));
1421
1539
  b.m("POST").h(headers).b(body);
1422
1540
  return b.build();
@@ -1825,6 +1943,20 @@ const se_SetTokenVaultCMKCommand = async (input, context) => {
1825
1943
  b.m("POST").h(headers).b(body);
1826
1944
  return b.build();
1827
1945
  };
1946
+ const se_SynchronizeGatewayTargetsCommand = async (input, context) => {
1947
+ const b = core.requestBuilder(input, context);
1948
+ const headers = {
1949
+ "content-type": "application/json",
1950
+ };
1951
+ b.bp("/gateways/{gatewayIdentifier}/synchronizeTargets");
1952
+ b.p("gatewayIdentifier", () => input.gatewayIdentifier, "{gatewayIdentifier}", false);
1953
+ let body;
1954
+ body = JSON.stringify(smithyClient.take(input, {
1955
+ targetIdList: (_) => smithyClient._json(_),
1956
+ }));
1957
+ b.m("PUT").h(headers).b(body);
1958
+ return b.build();
1959
+ };
1828
1960
  const se_TagResourceCommand = async (input, context) => {
1829
1961
  const b = core.requestBuilder(input, context);
1830
1962
  const headers = {
@@ -1993,7 +2125,7 @@ const se_UpdateWorkloadIdentityCommand = async (input, context) => {
1993
2125
  return b.build();
1994
2126
  };
1995
2127
  const de_CreateAgentRuntimeCommand = async (output, context) => {
1996
- if (output.statusCode !== 201 && output.statusCode >= 300) {
2128
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
1997
2129
  return de_CommandError(output, context);
1998
2130
  }
1999
2131
  const contents = smithyClient.map({
@@ -2012,7 +2144,7 @@ const de_CreateAgentRuntimeCommand = async (output, context) => {
2012
2144
  return contents;
2013
2145
  };
2014
2146
  const de_CreateAgentRuntimeEndpointCommand = async (output, context) => {
2015
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2147
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2016
2148
  return de_CommandError(output, context);
2017
2149
  }
2018
2150
  const contents = smithyClient.map({
@@ -2022,7 +2154,9 @@ const de_CreateAgentRuntimeEndpointCommand = async (output, context) => {
2022
2154
  const doc = smithyClient.take(data, {
2023
2155
  agentRuntimeArn: smithyClient.expectString,
2024
2156
  agentRuntimeEndpointArn: smithyClient.expectString,
2157
+ agentRuntimeId: smithyClient.expectString,
2025
2158
  createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
2159
+ endpointName: smithyClient.expectString,
2026
2160
  status: smithyClient.expectString,
2027
2161
  targetVersion: smithyClient.expectString,
2028
2162
  });
@@ -2030,7 +2164,7 @@ const de_CreateAgentRuntimeEndpointCommand = async (output, context) => {
2030
2164
  return contents;
2031
2165
  };
2032
2166
  const de_CreateApiKeyCredentialProviderCommand = async (output, context) => {
2033
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2167
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
2034
2168
  return de_CommandError(output, context);
2035
2169
  }
2036
2170
  const contents = smithyClient.map({
@@ -2046,7 +2180,7 @@ const de_CreateApiKeyCredentialProviderCommand = async (output, context) => {
2046
2180
  return contents;
2047
2181
  };
2048
2182
  const de_CreateBrowserCommand = async (output, context) => {
2049
- if (output.statusCode !== 201 && output.statusCode >= 300) {
2183
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2050
2184
  return de_CommandError(output, context);
2051
2185
  }
2052
2186
  const contents = smithyClient.map({
@@ -2063,7 +2197,7 @@ const de_CreateBrowserCommand = async (output, context) => {
2063
2197
  return contents;
2064
2198
  };
2065
2199
  const de_CreateCodeInterpreterCommand = async (output, context) => {
2066
- if (output.statusCode !== 201 && output.statusCode >= 300) {
2200
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2067
2201
  return de_CommandError(output, context);
2068
2202
  }
2069
2203
  const contents = smithyClient.map({
@@ -2122,6 +2256,7 @@ const de_CreateGatewayTargetCommand = async (output, context) => {
2122
2256
  credentialProviderConfigurations: smithyClient._json,
2123
2257
  description: smithyClient.expectString,
2124
2258
  gatewayArn: smithyClient.expectString,
2259
+ lastSynchronizedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
2125
2260
  name: smithyClient.expectString,
2126
2261
  status: smithyClient.expectString,
2127
2262
  statusReasons: smithyClient._json,
@@ -2133,7 +2268,7 @@ const de_CreateGatewayTargetCommand = async (output, context) => {
2133
2268
  return contents;
2134
2269
  };
2135
2270
  const de_CreateMemoryCommand = async (output, context) => {
2136
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2271
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2137
2272
  return de_CommandError(output, context);
2138
2273
  }
2139
2274
  const contents = smithyClient.map({
@@ -2147,7 +2282,7 @@ const de_CreateMemoryCommand = async (output, context) => {
2147
2282
  return contents;
2148
2283
  };
2149
2284
  const de_CreateOauth2CredentialProviderCommand = async (output, context) => {
2150
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2285
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
2151
2286
  return de_CommandError(output, context);
2152
2287
  }
2153
2288
  const contents = smithyClient.map({
@@ -2155,15 +2290,17 @@ const de_CreateOauth2CredentialProviderCommand = async (output, context) => {
2155
2290
  });
2156
2291
  const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
2157
2292
  const doc = smithyClient.take(data, {
2293
+ callbackUrl: smithyClient.expectString,
2158
2294
  clientSecretArn: smithyClient._json,
2159
2295
  credentialProviderArn: smithyClient.expectString,
2160
2296
  name: smithyClient.expectString,
2297
+ oauth2ProviderConfigOutput: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
2161
2298
  });
2162
2299
  Object.assign(contents, doc);
2163
2300
  return contents;
2164
2301
  };
2165
2302
  const de_CreateWorkloadIdentityCommand = async (output, context) => {
2166
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2303
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
2167
2304
  return de_CommandError(output, context);
2168
2305
  }
2169
2306
  const contents = smithyClient.map({
@@ -2179,7 +2316,7 @@ const de_CreateWorkloadIdentityCommand = async (output, context) => {
2179
2316
  return contents;
2180
2317
  };
2181
2318
  const de_DeleteAgentRuntimeCommand = async (output, context) => {
2182
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2319
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2183
2320
  return de_CommandError(output, context);
2184
2321
  }
2185
2322
  const contents = smithyClient.map({
@@ -2187,13 +2324,14 @@ const de_DeleteAgentRuntimeCommand = async (output, context) => {
2187
2324
  });
2188
2325
  const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
2189
2326
  const doc = smithyClient.take(data, {
2327
+ agentRuntimeId: smithyClient.expectString,
2190
2328
  status: smithyClient.expectString,
2191
2329
  });
2192
2330
  Object.assign(contents, doc);
2193
2331
  return contents;
2194
2332
  };
2195
2333
  const de_DeleteAgentRuntimeEndpointCommand = async (output, context) => {
2196
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2334
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2197
2335
  return de_CommandError(output, context);
2198
2336
  }
2199
2337
  const contents = smithyClient.map({
@@ -2201,13 +2339,15 @@ const de_DeleteAgentRuntimeEndpointCommand = async (output, context) => {
2201
2339
  });
2202
2340
  const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
2203
2341
  const doc = smithyClient.take(data, {
2342
+ agentRuntimeId: smithyClient.expectString,
2343
+ endpointName: smithyClient.expectString,
2204
2344
  status: smithyClient.expectString,
2205
2345
  });
2206
2346
  Object.assign(contents, doc);
2207
2347
  return contents;
2208
2348
  };
2209
2349
  const de_DeleteApiKeyCredentialProviderCommand = async (output, context) => {
2210
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2350
+ if (output.statusCode !== 204 && output.statusCode >= 300) {
2211
2351
  return de_CommandError(output, context);
2212
2352
  }
2213
2353
  const contents = smithyClient.map({
@@ -2217,7 +2357,7 @@ const de_DeleteApiKeyCredentialProviderCommand = async (output, context) => {
2217
2357
  return contents;
2218
2358
  };
2219
2359
  const de_DeleteBrowserCommand = async (output, context) => {
2220
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2360
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2221
2361
  return de_CommandError(output, context);
2222
2362
  }
2223
2363
  const contents = smithyClient.map({
@@ -2233,7 +2373,7 @@ const de_DeleteBrowserCommand = async (output, context) => {
2233
2373
  return contents;
2234
2374
  };
2235
2375
  const de_DeleteCodeInterpreterCommand = async (output, context) => {
2236
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2376
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2237
2377
  return de_CommandError(output, context);
2238
2378
  }
2239
2379
  const contents = smithyClient.map({
@@ -2282,7 +2422,7 @@ const de_DeleteGatewayTargetCommand = async (output, context) => {
2282
2422
  return contents;
2283
2423
  };
2284
2424
  const de_DeleteMemoryCommand = async (output, context) => {
2285
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2425
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2286
2426
  return de_CommandError(output, context);
2287
2427
  }
2288
2428
  const contents = smithyClient.map({
@@ -2297,7 +2437,7 @@ const de_DeleteMemoryCommand = async (output, context) => {
2297
2437
  return contents;
2298
2438
  };
2299
2439
  const de_DeleteOauth2CredentialProviderCommand = async (output, context) => {
2300
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2440
+ if (output.statusCode !== 204 && output.statusCode >= 300) {
2301
2441
  return de_CommandError(output, context);
2302
2442
  }
2303
2443
  const contents = smithyClient.map({
@@ -2307,7 +2447,7 @@ const de_DeleteOauth2CredentialProviderCommand = async (output, context) => {
2307
2447
  return contents;
2308
2448
  };
2309
2449
  const de_DeleteWorkloadIdentityCommand = async (output, context) => {
2310
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2450
+ if (output.statusCode !== 204 && output.statusCode >= 300) {
2311
2451
  return de_CommandError(output, context);
2312
2452
  }
2313
2453
  const contents = smithyClient.map({
@@ -2478,6 +2618,7 @@ const de_GetGatewayTargetCommand = async (output, context) => {
2478
2618
  credentialProviderConfigurations: smithyClient._json,
2479
2619
  description: smithyClient.expectString,
2480
2620
  gatewayArn: smithyClient.expectString,
2621
+ lastSynchronizedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
2481
2622
  name: smithyClient.expectString,
2482
2623
  status: smithyClient.expectString,
2483
2624
  statusReasons: smithyClient._json,
@@ -2511,6 +2652,7 @@ const de_GetOauth2CredentialProviderCommand = async (output, context) => {
2511
2652
  });
2512
2653
  const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
2513
2654
  const doc = smithyClient.take(data, {
2655
+ callbackUrl: smithyClient.expectString,
2514
2656
  clientSecretArn: smithyClient._json,
2515
2657
  createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2516
2658
  credentialProviderArn: smithyClient.expectString,
@@ -2751,6 +2893,20 @@ const de_SetTokenVaultCMKCommand = async (output, context) => {
2751
2893
  Object.assign(contents, doc);
2752
2894
  return contents;
2753
2895
  };
2896
+ const de_SynchronizeGatewayTargetsCommand = async (output, context) => {
2897
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2898
+ return de_CommandError(output, context);
2899
+ }
2900
+ const contents = smithyClient.map({
2901
+ $metadata: deserializeMetadata(output),
2902
+ });
2903
+ const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
2904
+ const doc = smithyClient.take(data, {
2905
+ targets: (_) => de_GatewayTargetList(_),
2906
+ });
2907
+ Object.assign(contents, doc);
2908
+ return contents;
2909
+ };
2754
2910
  const de_TagResourceCommand = async (output, context) => {
2755
2911
  if (output.statusCode !== 204 && output.statusCode >= 300) {
2756
2912
  return de_CommandError(output, context);
@@ -2772,7 +2928,7 @@ const de_UntagResourceCommand = async (output, context) => {
2772
2928
  return contents;
2773
2929
  };
2774
2930
  const de_UpdateAgentRuntimeCommand = async (output, context) => {
2775
- if (output.statusCode !== 201 && output.statusCode >= 300) {
2931
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2776
2932
  return de_CommandError(output, context);
2777
2933
  }
2778
2934
  const contents = smithyClient.map({
@@ -2792,7 +2948,7 @@ const de_UpdateAgentRuntimeCommand = async (output, context) => {
2792
2948
  return contents;
2793
2949
  };
2794
2950
  const de_UpdateAgentRuntimeEndpointCommand = async (output, context) => {
2795
- if (output.statusCode !== 200 && output.statusCode >= 300) {
2951
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2796
2952
  return de_CommandError(output, context);
2797
2953
  }
2798
2954
  const contents = smithyClient.map({
@@ -2872,6 +3028,7 @@ const de_UpdateGatewayTargetCommand = async (output, context) => {
2872
3028
  credentialProviderConfigurations: smithyClient._json,
2873
3029
  description: smithyClient.expectString,
2874
3030
  gatewayArn: smithyClient.expectString,
3031
+ lastSynchronizedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
2875
3032
  name: smithyClient.expectString,
2876
3033
  status: smithyClient.expectString,
2877
3034
  statusReasons: smithyClient._json,
@@ -2883,7 +3040,7 @@ const de_UpdateGatewayTargetCommand = async (output, context) => {
2883
3040
  return contents;
2884
3041
  };
2885
3042
  const de_UpdateMemoryCommand = async (output, context) => {
2886
- if (output.statusCode !== 200 && output.statusCode >= 300) {
3043
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
2887
3044
  return de_CommandError(output, context);
2888
3045
  }
2889
3046
  const contents = smithyClient.map({
@@ -2905,6 +3062,7 @@ const de_UpdateOauth2CredentialProviderCommand = async (output, context) => {
2905
3062
  });
2906
3063
  const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
2907
3064
  const doc = smithyClient.take(data, {
3065
+ callbackUrl: smithyClient.expectString,
2908
3066
  clientSecretArn: smithyClient._json,
2909
3067
  createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2910
3068
  credentialProviderArn: smithyClient.expectString,
@@ -3186,6 +3344,7 @@ const se_McpLambdaTargetConfiguration = (input, context) => {
3186
3344
  const se_McpTargetConfiguration = (input, context) => {
3187
3345
  return exports.McpTargetConfiguration.visit(input, {
3188
3346
  lambda: (value) => ({ lambda: se_McpLambdaTargetConfiguration(value) }),
3347
+ mcpServer: (value) => ({ mcpServer: smithyClient._json(value) }),
3189
3348
  openApiSchema: (value) => ({ openApiSchema: smithyClient._json(value) }),
3190
3349
  smithyModel: (value) => ({ smithyModel: smithyClient._json(value) }),
3191
3350
  _: (name, value) => ({ [name]: value }),
@@ -3352,6 +3511,29 @@ const de_GatewaySummary = (output, context) => {
3352
3511
  updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
3353
3512
  });
3354
3513
  };
3514
+ const de_GatewayTarget = (output, context) => {
3515
+ return smithyClient.take(output, {
3516
+ createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
3517
+ credentialProviderConfigurations: smithyClient._json,
3518
+ description: smithyClient.expectString,
3519
+ gatewayArn: smithyClient.expectString,
3520
+ lastSynchronizedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
3521
+ name: smithyClient.expectString,
3522
+ status: smithyClient.expectString,
3523
+ statusReasons: smithyClient._json,
3524
+ targetConfiguration: (_) => de_TargetConfiguration(core$1.awsExpectUnion(_)),
3525
+ targetId: smithyClient.expectString,
3526
+ updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
3527
+ });
3528
+ };
3529
+ const de_GatewayTargetList = (output, context) => {
3530
+ const retVal = (output || [])
3531
+ .filter((e) => e != null)
3532
+ .map((entry) => {
3533
+ return de_GatewayTarget(entry);
3534
+ });
3535
+ return retVal;
3536
+ };
3355
3537
  const de_McpLambdaTargetConfiguration = (output, context) => {
3356
3538
  return smithyClient.take(output, {
3357
3539
  lambdaArn: smithyClient.expectString,
@@ -3364,6 +3546,11 @@ const de_McpTargetConfiguration = (output, context) => {
3364
3546
  lambda: de_McpLambdaTargetConfiguration(output.lambda),
3365
3547
  };
3366
3548
  }
3549
+ if (output.mcpServer != null) {
3550
+ return {
3551
+ mcpServer: smithyClient._json(output.mcpServer),
3552
+ };
3553
+ }
3367
3554
  if (output.openApiSchema != null) {
3368
3555
  return {
3369
3556
  openApiSchema: smithyClient._json(core$1.awsExpectUnion(output.openApiSchema)),
@@ -3562,7 +3749,7 @@ class CreateAgentRuntimeEndpointCommand extends smithyClient.Command
3562
3749
  })
3563
3750
  .s("AmazonBedrockAgentCoreControl", "CreateAgentRuntimeEndpoint", {})
3564
3751
  .n("BedrockAgentCoreControlClient", "CreateAgentRuntimeEndpointCommand")
3565
- .f(CreateAgentRuntimeEndpointRequestFilterSensitiveLog, void 0)
3752
+ .f(CreateAgentRuntimeEndpointRequestFilterSensitiveLog, CreateAgentRuntimeEndpointResponseFilterSensitiveLog)
3566
3753
  .ser(se_CreateAgentRuntimeEndpointCommand)
3567
3754
  .de(de_CreateAgentRuntimeEndpointCommand)
3568
3755
  .build() {
@@ -3732,7 +3919,7 @@ class DeleteAgentRuntimeEndpointCommand extends smithyClient.Command
3732
3919
  })
3733
3920
  .s("AmazonBedrockAgentCoreControl", "DeleteAgentRuntimeEndpoint", {})
3734
3921
  .n("BedrockAgentCoreControlClient", "DeleteAgentRuntimeEndpointCommand")
3735
- .f(DeleteAgentRuntimeEndpointRequestFilterSensitiveLog, void 0)
3922
+ .f(DeleteAgentRuntimeEndpointRequestFilterSensitiveLog, DeleteAgentRuntimeEndpointResponseFilterSensitiveLog)
3736
3923
  .ser(se_DeleteAgentRuntimeEndpointCommand)
3737
3924
  .de(de_DeleteAgentRuntimeEndpointCommand)
3738
3925
  .build() {
@@ -4282,6 +4469,23 @@ class SetTokenVaultCMKCommand extends smithyClient.Command
4282
4469
  .build() {
4283
4470
  }
4284
4471
 
4472
+ class SynchronizeGatewayTargetsCommand extends smithyClient.Command
4473
+ .classBuilder()
4474
+ .ep(commonParams)
4475
+ .m(function (Command, cs, config, o) {
4476
+ return [
4477
+ middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
4478
+ middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
4479
+ ];
4480
+ })
4481
+ .s("AmazonBedrockAgentCoreControl", "SynchronizeGatewayTargets", {})
4482
+ .n("BedrockAgentCoreControlClient", "SynchronizeGatewayTargetsCommand")
4483
+ .f(void 0, SynchronizeGatewayTargetsResponseFilterSensitiveLog)
4484
+ .ser(se_SynchronizeGatewayTargetsCommand)
4485
+ .de(de_SynchronizeGatewayTargetsCommand)
4486
+ .build() {
4487
+ }
4488
+
4285
4489
  class TagResourceCommand extends smithyClient.Command
4286
4490
  .classBuilder()
4287
4491
  .ep(commonParams)
@@ -4497,6 +4701,7 @@ const commands = {
4497
4701
  ListTagsForResourceCommand,
4498
4702
  ListWorkloadIdentitiesCommand,
4499
4703
  SetTokenVaultCMKCommand,
4704
+ SynchronizeGatewayTargetsCommand,
4500
4705
  TagResourceCommand,
4501
4706
  UntagResourceCommand,
4502
4707
  UpdateAgentRuntimeCommand,
@@ -4597,6 +4802,7 @@ exports.AgentRuntimeFilterSensitiveLog = AgentRuntimeFilterSensitiveLog;
4597
4802
  exports.AgentRuntimeStatus = AgentRuntimeStatus;
4598
4803
  exports.ApiKeyCredentialLocation = ApiKeyCredentialLocation;
4599
4804
  exports.ApiSchemaConfigurationFilterSensitiveLog = ApiSchemaConfigurationFilterSensitiveLog;
4805
+ exports.AtlassianOauth2ProviderConfigInputFilterSensitiveLog = AtlassianOauth2ProviderConfigInputFilterSensitiveLog;
4600
4806
  exports.AuthorizerType = AuthorizerType;
4601
4807
  exports.BedrockAgentCoreControl = BedrockAgentCoreControl;
4602
4808
  exports.BedrockAgentCoreControlClient = BedrockAgentCoreControlClient;
@@ -4613,6 +4819,7 @@ exports.ConsolidationConfigurationFilterSensitiveLog = ConsolidationConfiguratio
4613
4819
  exports.CreateAgentRuntimeCommand = CreateAgentRuntimeCommand;
4614
4820
  exports.CreateAgentRuntimeEndpointCommand = CreateAgentRuntimeEndpointCommand;
4615
4821
  exports.CreateAgentRuntimeEndpointRequestFilterSensitiveLog = CreateAgentRuntimeEndpointRequestFilterSensitiveLog;
4822
+ exports.CreateAgentRuntimeEndpointResponseFilterSensitiveLog = CreateAgentRuntimeEndpointResponseFilterSensitiveLog;
4616
4823
  exports.CreateAgentRuntimeRequestFilterSensitiveLog = CreateAgentRuntimeRequestFilterSensitiveLog;
4617
4824
  exports.CreateApiKeyCredentialProviderCommand = CreateApiKeyCredentialProviderCommand;
4618
4825
  exports.CreateApiKeyCredentialProviderRequestFilterSensitiveLog = CreateApiKeyCredentialProviderRequestFilterSensitiveLog;
@@ -4647,6 +4854,7 @@ exports.DecryptionFailure = DecryptionFailure;
4647
4854
  exports.DeleteAgentRuntimeCommand = DeleteAgentRuntimeCommand;
4648
4855
  exports.DeleteAgentRuntimeEndpointCommand = DeleteAgentRuntimeEndpointCommand;
4649
4856
  exports.DeleteAgentRuntimeEndpointRequestFilterSensitiveLog = DeleteAgentRuntimeEndpointRequestFilterSensitiveLog;
4857
+ exports.DeleteAgentRuntimeEndpointResponseFilterSensitiveLog = DeleteAgentRuntimeEndpointResponseFilterSensitiveLog;
4650
4858
  exports.DeleteApiKeyCredentialProviderCommand = DeleteApiKeyCredentialProviderCommand;
4651
4859
  exports.DeleteBrowserCommand = DeleteBrowserCommand;
4652
4860
  exports.DeleteCodeInterpreterCommand = DeleteCodeInterpreterCommand;
@@ -4661,6 +4869,7 @@ exports.ExtractionConfigurationFilterSensitiveLog = ExtractionConfigurationFilte
4661
4869
  exports.GatewayProtocolType = GatewayProtocolType;
4662
4870
  exports.GatewayStatus = GatewayStatus;
4663
4871
  exports.GatewaySummaryFilterSensitiveLog = GatewaySummaryFilterSensitiveLog;
4872
+ exports.GatewayTargetFilterSensitiveLog = GatewayTargetFilterSensitiveLog;
4664
4873
  exports.GetAgentRuntimeCommand = GetAgentRuntimeCommand;
4665
4874
  exports.GetAgentRuntimeEndpointCommand = GetAgentRuntimeEndpointCommand;
4666
4875
  exports.GetAgentRuntimeEndpointRequestFilterSensitiveLog = GetAgentRuntimeEndpointRequestFilterSensitiveLog;
@@ -4682,8 +4891,10 @@ exports.GetTokenVaultCommand = GetTokenVaultCommand;
4682
4891
  exports.GetWorkloadIdentityCommand = GetWorkloadIdentityCommand;
4683
4892
  exports.GithubOauth2ProviderConfigInputFilterSensitiveLog = GithubOauth2ProviderConfigInputFilterSensitiveLog;
4684
4893
  exports.GoogleOauth2ProviderConfigInputFilterSensitiveLog = GoogleOauth2ProviderConfigInputFilterSensitiveLog;
4894
+ exports.IncludedOauth2ProviderConfigInputFilterSensitiveLog = IncludedOauth2ProviderConfigInputFilterSensitiveLog;
4685
4895
  exports.InternalServerException = InternalServerException;
4686
4896
  exports.KeyType = KeyType;
4897
+ exports.LinkedinOauth2ProviderConfigInputFilterSensitiveLog = LinkedinOauth2ProviderConfigInputFilterSensitiveLog;
4687
4898
  exports.ListAgentRuntimeEndpointsCommand = ListAgentRuntimeEndpointsCommand;
4688
4899
  exports.ListAgentRuntimeEndpointsResponseFilterSensitiveLog = ListAgentRuntimeEndpointsResponseFilterSensitiveLog;
4689
4900
  exports.ListAgentRuntimeVersionsCommand = ListAgentRuntimeVersionsCommand;
@@ -4742,6 +4953,8 @@ exports.SummaryConsolidationOverrideFilterSensitiveLog = SummaryConsolidationOve
4742
4953
  exports.SummaryMemoryStrategyInputFilterSensitiveLog = SummaryMemoryStrategyInputFilterSensitiveLog;
4743
4954
  exports.SummaryOverrideConfigurationInputFilterSensitiveLog = SummaryOverrideConfigurationInputFilterSensitiveLog;
4744
4955
  exports.SummaryOverrideConsolidationConfigurationInputFilterSensitiveLog = SummaryOverrideConsolidationConfigurationInputFilterSensitiveLog;
4956
+ exports.SynchronizeGatewayTargetsCommand = SynchronizeGatewayTargetsCommand;
4957
+ exports.SynchronizeGatewayTargetsResponseFilterSensitiveLog = SynchronizeGatewayTargetsResponseFilterSensitiveLog;
4745
4958
  exports.TagResourceCommand = TagResourceCommand;
4746
4959
  exports.TargetConfigurationFilterSensitiveLog = TargetConfigurationFilterSensitiveLog;
4747
4960
  exports.TargetStatus = TargetStatus;