@aws-sdk/client-bedrock-agentcore-control 3.1037.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.
Files changed (109) hide show
  1. package/README.md +84 -0
  2. package/dist-cjs/index.js +217 -2
  3. package/dist-cjs/schemas/schemas_0.js +529 -98
  4. package/dist-es/BedrockAgentCoreControl.js +30 -0
  5. package/dist-es/commands/CreateConfigurationBundleCommand.js +16 -0
  6. package/dist-es/commands/CreateGatewayRuleCommand.js +16 -0
  7. package/dist-es/commands/DeleteConfigurationBundleCommand.js +16 -0
  8. package/dist-es/commands/DeleteGatewayRuleCommand.js +16 -0
  9. package/dist-es/commands/GetConfigurationBundleCommand.js +16 -0
  10. package/dist-es/commands/GetConfigurationBundleVersionCommand.js +16 -0
  11. package/dist-es/commands/GetGatewayRuleCommand.js +16 -0
  12. package/dist-es/commands/ListConfigurationBundleVersionsCommand.js +16 -0
  13. package/dist-es/commands/ListConfigurationBundlesCommand.js +16 -0
  14. package/dist-es/commands/ListGatewayRulesCommand.js +16 -0
  15. package/dist-es/commands/UpdateConfigurationBundleCommand.js +16 -0
  16. package/dist-es/commands/UpdateGatewayRuleCommand.js +16 -0
  17. package/dist-es/commands/index.js +12 -0
  18. package/dist-es/models/enums.js +30 -0
  19. package/dist-es/pagination/ListConfigurationBundleVersionsPaginator.js +4 -0
  20. package/dist-es/pagination/ListConfigurationBundlesPaginator.js +4 -0
  21. package/dist-es/pagination/ListGatewayRulesPaginator.js +4 -0
  22. package/dist-es/pagination/index.js +3 -0
  23. package/dist-es/schemas/schemas_0.js +516 -86
  24. package/dist-es/waiters/waitForMemoryCreated.js +1 -1
  25. package/dist-es/waiters/waitForPolicyActive.js +1 -1
  26. package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
  27. package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
  28. package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
  29. package/dist-types/BedrockAgentCoreControl.d.ts +113 -6
  30. package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
  31. package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +111 -0
  32. package/dist-types/commands/CreateEvaluatorCommand.d.ts +1 -0
  33. package/dist-types/commands/CreateGatewayCommand.d.ts +4 -4
  34. package/dist-types/commands/CreateGatewayRuleCommand.d.ts +232 -0
  35. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +17 -4
  36. package/dist-types/commands/CreateMemoryCommand.d.ts +2 -1
  37. package/dist-types/commands/DeleteConfigurationBundleCommand.d.ts +93 -0
  38. package/dist-types/commands/DeleteGatewayRuleCommand.d.ts +94 -0
  39. package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
  40. package/dist-types/commands/GetConfigurationBundleCommand.d.ts +112 -0
  41. package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +112 -0
  42. package/dist-types/commands/GetEvaluatorCommand.d.ts +2 -0
  43. package/dist-types/commands/GetGatewayCommand.d.ts +2 -2
  44. package/dist-types/commands/GetGatewayRuleCommand.d.ts +162 -0
  45. package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -2
  46. package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
  47. package/dist-types/commands/ListConfigurationBundleVersionsCommand.d.ts +115 -0
  48. package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +95 -0
  49. package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -0
  50. package/dist-types/commands/ListGatewayRulesCommand.d.ts +168 -0
  51. package/dist-types/commands/ListGatewaysCommand.d.ts +2 -2
  52. package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
  53. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -2
  54. package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +112 -0
  55. package/dist-types/commands/UpdateEvaluatorCommand.d.ts +1 -0
  56. package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -4
  57. package/dist-types/commands/UpdateGatewayRuleCommand.d.ts +230 -0
  58. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +17 -4
  59. package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
  60. package/dist-types/commands/index.d.ts +12 -0
  61. package/dist-types/models/enums.d.ts +70 -0
  62. package/dist-types/models/models_0.d.ts +2866 -2901
  63. package/dist-types/models/models_1.d.ts +1406 -4
  64. package/dist-types/pagination/ListConfigurationBundleVersionsPaginator.d.ts +7 -0
  65. package/dist-types/pagination/ListConfigurationBundlesPaginator.d.ts +7 -0
  66. package/dist-types/pagination/ListGatewayRulesPaginator.d.ts +7 -0
  67. package/dist-types/pagination/index.d.ts +3 -0
  68. package/dist-types/schemas/schemas_0.d.ts +61 -0
  69. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +233 -6
  70. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
  71. package/dist-types/ts3.4/commands/CreateConfigurationBundleCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/CreateGatewayRuleCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +2 -1
  74. package/dist-types/ts3.4/commands/DeleteConfigurationBundleCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/DeleteGatewayRuleCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/GetConfigurationBundleCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/GetConfigurationBundleVersionCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/GetGatewayRuleCommand.d.ts +50 -0
  80. package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/ListConfigurationBundleVersionsCommand.d.ts +51 -0
  82. package/dist-types/ts3.4/commands/ListConfigurationBundlesCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/ListGatewayRulesCommand.d.ts +50 -0
  84. package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +1 -1
  85. package/dist-types/ts3.4/commands/UpdateConfigurationBundleCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/UpdateGatewayRuleCommand.d.ts +51 -0
  87. package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  89. package/dist-types/ts3.4/models/enums.d.ts +39 -0
  90. package/dist-types/ts3.4/models/models_0.d.ts +405 -571
  91. package/dist-types/ts3.4/models/models_1.d.ts +592 -7
  92. package/dist-types/ts3.4/pagination/ListConfigurationBundleVersionsPaginator.d.ts +11 -0
  93. package/dist-types/ts3.4/pagination/ListConfigurationBundlesPaginator.d.ts +11 -0
  94. package/dist-types/ts3.4/pagination/ListGatewayRulesPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  96. package/dist-types/ts3.4/schemas/schemas_0.d.ts +61 -0
  97. package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
  98. package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
  99. package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
  100. package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
  101. package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
  102. package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
  103. package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
  104. package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
  105. package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
  106. package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
  107. package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
  108. package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
  109. package/package.json +8 -8
@@ -30,6 +30,10 @@ import {
30
30
  CreateCodeInterpreterCommandInput,
31
31
  CreateCodeInterpreterCommandOutput,
32
32
  } from "./commands/CreateCodeInterpreterCommand";
33
+ import {
34
+ CreateConfigurationBundleCommandInput,
35
+ CreateConfigurationBundleCommandOutput,
36
+ } from "./commands/CreateConfigurationBundleCommand";
33
37
  import {
34
38
  CreateEvaluatorCommandInput,
35
39
  CreateEvaluatorCommandOutput,
@@ -38,6 +42,10 @@ import {
38
42
  CreateGatewayCommandInput,
39
43
  CreateGatewayCommandOutput,
40
44
  } from "./commands/CreateGatewayCommand";
45
+ import {
46
+ CreateGatewayRuleCommandInput,
47
+ CreateGatewayRuleCommandOutput,
48
+ } from "./commands/CreateGatewayRuleCommand";
41
49
  import {
42
50
  CreateGatewayTargetCommandInput,
43
51
  CreateGatewayTargetCommandOutput,
@@ -102,6 +110,10 @@ import {
102
110
  DeleteCodeInterpreterCommandInput,
103
111
  DeleteCodeInterpreterCommandOutput,
104
112
  } from "./commands/DeleteCodeInterpreterCommand";
113
+ import {
114
+ DeleteConfigurationBundleCommandInput,
115
+ DeleteConfigurationBundleCommandOutput,
116
+ } from "./commands/DeleteConfigurationBundleCommand";
105
117
  import {
106
118
  DeleteEvaluatorCommandInput,
107
119
  DeleteEvaluatorCommandOutput,
@@ -110,6 +122,10 @@ import {
110
122
  DeleteGatewayCommandInput,
111
123
  DeleteGatewayCommandOutput,
112
124
  } from "./commands/DeleteGatewayCommand";
125
+ import {
126
+ DeleteGatewayRuleCommandInput,
127
+ DeleteGatewayRuleCommandOutput,
128
+ } from "./commands/DeleteGatewayRuleCommand";
113
129
  import {
114
130
  DeleteGatewayTargetCommandInput,
115
131
  DeleteGatewayTargetCommandOutput,
@@ -178,6 +194,14 @@ import {
178
194
  GetCodeInterpreterCommandInput,
179
195
  GetCodeInterpreterCommandOutput,
180
196
  } from "./commands/GetCodeInterpreterCommand";
197
+ import {
198
+ GetConfigurationBundleCommandInput,
199
+ GetConfigurationBundleCommandOutput,
200
+ } from "./commands/GetConfigurationBundleCommand";
201
+ import {
202
+ GetConfigurationBundleVersionCommandInput,
203
+ GetConfigurationBundleVersionCommandOutput,
204
+ } from "./commands/GetConfigurationBundleVersionCommand";
181
205
  import {
182
206
  GetEvaluatorCommandInput,
183
207
  GetEvaluatorCommandOutput,
@@ -186,6 +210,10 @@ import {
186
210
  GetGatewayCommandInput,
187
211
  GetGatewayCommandOutput,
188
212
  } from "./commands/GetGatewayCommand";
213
+ import {
214
+ GetGatewayRuleCommandInput,
215
+ GetGatewayRuleCommandOutput,
216
+ } from "./commands/GetGatewayRuleCommand";
189
217
  import {
190
218
  GetGatewayTargetCommandInput,
191
219
  GetGatewayTargetCommandOutput,
@@ -266,10 +294,22 @@ import {
266
294
  ListCodeInterpretersCommandInput,
267
295
  ListCodeInterpretersCommandOutput,
268
296
  } from "./commands/ListCodeInterpretersCommand";
297
+ import {
298
+ ListConfigurationBundlesCommandInput,
299
+ ListConfigurationBundlesCommandOutput,
300
+ } from "./commands/ListConfigurationBundlesCommand";
301
+ import {
302
+ ListConfigurationBundleVersionsCommandInput,
303
+ ListConfigurationBundleVersionsCommandOutput,
304
+ } from "./commands/ListConfigurationBundleVersionsCommand";
269
305
  import {
270
306
  ListEvaluatorsCommandInput,
271
307
  ListEvaluatorsCommandOutput,
272
308
  } from "./commands/ListEvaluatorsCommand";
309
+ import {
310
+ ListGatewayRulesCommandInput,
311
+ ListGatewayRulesCommandOutput,
312
+ } from "./commands/ListGatewayRulesCommand";
273
313
  import {
274
314
  ListGatewaysCommandInput,
275
315
  ListGatewaysCommandOutput,
@@ -366,6 +406,10 @@ import {
366
406
  UpdateApiKeyCredentialProviderCommandInput,
367
407
  UpdateApiKeyCredentialProviderCommandOutput,
368
408
  } from "./commands/UpdateApiKeyCredentialProviderCommand";
409
+ import {
410
+ UpdateConfigurationBundleCommandInput,
411
+ UpdateConfigurationBundleCommandOutput,
412
+ } from "./commands/UpdateConfigurationBundleCommand";
369
413
  import {
370
414
  UpdateEvaluatorCommandInput,
371
415
  UpdateEvaluatorCommandOutput,
@@ -374,6 +418,10 @@ import {
374
418
  UpdateGatewayCommandInput,
375
419
  UpdateGatewayCommandOutput,
376
420
  } from "./commands/UpdateGatewayCommand";
421
+ import {
422
+ UpdateGatewayRuleCommandInput,
423
+ UpdateGatewayRuleCommandOutput,
424
+ } from "./commands/UpdateGatewayRuleCommand";
377
425
  import {
378
426
  UpdateGatewayTargetCommandInput,
379
427
  UpdateGatewayTargetCommandOutput,
@@ -418,6 +466,7 @@ import {
418
466
  UpdateWorkloadIdentityCommandInput,
419
467
  UpdateWorkloadIdentityCommandOutput,
420
468
  } from "./commands/UpdateWorkloadIdentityCommand";
469
+ import { ResourceNotFoundException } from "./models/errors";
421
470
  export interface BedrockAgentCoreControl {
422
471
  createAgentRuntime(
423
472
  args: CreateAgentRuntimeCommandInput,
@@ -497,6 +546,19 @@ export interface BedrockAgentCoreControl {
497
546
  options: __HttpHandlerOptions,
498
547
  cb: (err: any, data?: CreateCodeInterpreterCommandOutput) => void
499
548
  ): void;
549
+ createConfigurationBundle(
550
+ args: CreateConfigurationBundleCommandInput,
551
+ options?: __HttpHandlerOptions
552
+ ): Promise<CreateConfigurationBundleCommandOutput>;
553
+ createConfigurationBundle(
554
+ args: CreateConfigurationBundleCommandInput,
555
+ cb: (err: any, data?: CreateConfigurationBundleCommandOutput) => void
556
+ ): void;
557
+ createConfigurationBundle(
558
+ args: CreateConfigurationBundleCommandInput,
559
+ options: __HttpHandlerOptions,
560
+ cb: (err: any, data?: CreateConfigurationBundleCommandOutput) => void
561
+ ): void;
500
562
  createEvaluator(
501
563
  args: CreateEvaluatorCommandInput,
502
564
  options?: __HttpHandlerOptions
@@ -523,6 +585,19 @@ export interface BedrockAgentCoreControl {
523
585
  options: __HttpHandlerOptions,
524
586
  cb: (err: any, data?: CreateGatewayCommandOutput) => void
525
587
  ): void;
588
+ createGatewayRule(
589
+ args: CreateGatewayRuleCommandInput,
590
+ options?: __HttpHandlerOptions
591
+ ): Promise<CreateGatewayRuleCommandOutput>;
592
+ createGatewayRule(
593
+ args: CreateGatewayRuleCommandInput,
594
+ cb: (err: any, data?: CreateGatewayRuleCommandOutput) => void
595
+ ): void;
596
+ createGatewayRule(
597
+ args: CreateGatewayRuleCommandInput,
598
+ options: __HttpHandlerOptions,
599
+ cb: (err: any, data?: CreateGatewayRuleCommandOutput) => void
600
+ ): void;
526
601
  createGatewayTarget(
527
602
  args: CreateGatewayTargetCommandInput,
528
603
  options?: __HttpHandlerOptions
@@ -731,6 +806,19 @@ export interface BedrockAgentCoreControl {
731
806
  options: __HttpHandlerOptions,
732
807
  cb: (err: any, data?: DeleteCodeInterpreterCommandOutput) => void
733
808
  ): void;
809
+ deleteConfigurationBundle(
810
+ args: DeleteConfigurationBundleCommandInput,
811
+ options?: __HttpHandlerOptions
812
+ ): Promise<DeleteConfigurationBundleCommandOutput>;
813
+ deleteConfigurationBundle(
814
+ args: DeleteConfigurationBundleCommandInput,
815
+ cb: (err: any, data?: DeleteConfigurationBundleCommandOutput) => void
816
+ ): void;
817
+ deleteConfigurationBundle(
818
+ args: DeleteConfigurationBundleCommandInput,
819
+ options: __HttpHandlerOptions,
820
+ cb: (err: any, data?: DeleteConfigurationBundleCommandOutput) => void
821
+ ): void;
734
822
  deleteEvaluator(
735
823
  args: DeleteEvaluatorCommandInput,
736
824
  options?: __HttpHandlerOptions
@@ -757,6 +845,19 @@ export interface BedrockAgentCoreControl {
757
845
  options: __HttpHandlerOptions,
758
846
  cb: (err: any, data?: DeleteGatewayCommandOutput) => void
759
847
  ): void;
848
+ deleteGatewayRule(
849
+ args: DeleteGatewayRuleCommandInput,
850
+ options?: __HttpHandlerOptions
851
+ ): Promise<DeleteGatewayRuleCommandOutput>;
852
+ deleteGatewayRule(
853
+ args: DeleteGatewayRuleCommandInput,
854
+ cb: (err: any, data?: DeleteGatewayRuleCommandOutput) => void
855
+ ): void;
856
+ deleteGatewayRule(
857
+ args: DeleteGatewayRuleCommandInput,
858
+ options: __HttpHandlerOptions,
859
+ cb: (err: any, data?: DeleteGatewayRuleCommandOutput) => void
860
+ ): void;
760
861
  deleteGatewayTarget(
761
862
  args: DeleteGatewayTargetCommandInput,
762
863
  options?: __HttpHandlerOptions
@@ -978,6 +1079,32 @@ export interface BedrockAgentCoreControl {
978
1079
  options: __HttpHandlerOptions,
979
1080
  cb: (err: any, data?: GetCodeInterpreterCommandOutput) => void
980
1081
  ): void;
1082
+ getConfigurationBundle(
1083
+ args: GetConfigurationBundleCommandInput,
1084
+ options?: __HttpHandlerOptions
1085
+ ): Promise<GetConfigurationBundleCommandOutput>;
1086
+ getConfigurationBundle(
1087
+ args: GetConfigurationBundleCommandInput,
1088
+ cb: (err: any, data?: GetConfigurationBundleCommandOutput) => void
1089
+ ): void;
1090
+ getConfigurationBundle(
1091
+ args: GetConfigurationBundleCommandInput,
1092
+ options: __HttpHandlerOptions,
1093
+ cb: (err: any, data?: GetConfigurationBundleCommandOutput) => void
1094
+ ): void;
1095
+ getConfigurationBundleVersion(
1096
+ args: GetConfigurationBundleVersionCommandInput,
1097
+ options?: __HttpHandlerOptions
1098
+ ): Promise<GetConfigurationBundleVersionCommandOutput>;
1099
+ getConfigurationBundleVersion(
1100
+ args: GetConfigurationBundleVersionCommandInput,
1101
+ cb: (err: any, data?: GetConfigurationBundleVersionCommandOutput) => void
1102
+ ): void;
1103
+ getConfigurationBundleVersion(
1104
+ args: GetConfigurationBundleVersionCommandInput,
1105
+ options: __HttpHandlerOptions,
1106
+ cb: (err: any, data?: GetConfigurationBundleVersionCommandOutput) => void
1107
+ ): void;
981
1108
  getEvaluator(
982
1109
  args: GetEvaluatorCommandInput,
983
1110
  options?: __HttpHandlerOptions
@@ -1004,6 +1131,19 @@ export interface BedrockAgentCoreControl {
1004
1131
  options: __HttpHandlerOptions,
1005
1132
  cb: (err: any, data?: GetGatewayCommandOutput) => void
1006
1133
  ): void;
1134
+ getGatewayRule(
1135
+ args: GetGatewayRuleCommandInput,
1136
+ options?: __HttpHandlerOptions
1137
+ ): Promise<GetGatewayRuleCommandOutput>;
1138
+ getGatewayRule(
1139
+ args: GetGatewayRuleCommandInput,
1140
+ cb: (err: any, data?: GetGatewayRuleCommandOutput) => void
1141
+ ): void;
1142
+ getGatewayRule(
1143
+ args: GetGatewayRuleCommandInput,
1144
+ options: __HttpHandlerOptions,
1145
+ cb: (err: any, data?: GetGatewayRuleCommandOutput) => void
1146
+ ): void;
1007
1147
  getGatewayTarget(
1008
1148
  args: GetGatewayTargetCommandInput,
1009
1149
  options?: __HttpHandlerOptions
@@ -1270,6 +1410,33 @@ export interface BedrockAgentCoreControl {
1270
1410
  options: __HttpHandlerOptions,
1271
1411
  cb: (err: any, data?: ListCodeInterpretersCommandOutput) => void
1272
1412
  ): void;
1413
+ listConfigurationBundles(): Promise<ListConfigurationBundlesCommandOutput>;
1414
+ listConfigurationBundles(
1415
+ args: ListConfigurationBundlesCommandInput,
1416
+ options?: __HttpHandlerOptions
1417
+ ): Promise<ListConfigurationBundlesCommandOutput>;
1418
+ listConfigurationBundles(
1419
+ args: ListConfigurationBundlesCommandInput,
1420
+ cb: (err: any, data?: ListConfigurationBundlesCommandOutput) => void
1421
+ ): void;
1422
+ listConfigurationBundles(
1423
+ args: ListConfigurationBundlesCommandInput,
1424
+ options: __HttpHandlerOptions,
1425
+ cb: (err: any, data?: ListConfigurationBundlesCommandOutput) => void
1426
+ ): void;
1427
+ listConfigurationBundleVersions(
1428
+ args: ListConfigurationBundleVersionsCommandInput,
1429
+ options?: __HttpHandlerOptions
1430
+ ): Promise<ListConfigurationBundleVersionsCommandOutput>;
1431
+ listConfigurationBundleVersions(
1432
+ args: ListConfigurationBundleVersionsCommandInput,
1433
+ cb: (err: any, data?: ListConfigurationBundleVersionsCommandOutput) => void
1434
+ ): void;
1435
+ listConfigurationBundleVersions(
1436
+ args: ListConfigurationBundleVersionsCommandInput,
1437
+ options: __HttpHandlerOptions,
1438
+ cb: (err: any, data?: ListConfigurationBundleVersionsCommandOutput) => void
1439
+ ): void;
1273
1440
  listEvaluators(): Promise<ListEvaluatorsCommandOutput>;
1274
1441
  listEvaluators(
1275
1442
  args: ListEvaluatorsCommandInput,
@@ -1284,6 +1451,19 @@ export interface BedrockAgentCoreControl {
1284
1451
  options: __HttpHandlerOptions,
1285
1452
  cb: (err: any, data?: ListEvaluatorsCommandOutput) => void
1286
1453
  ): void;
1454
+ listGatewayRules(
1455
+ args: ListGatewayRulesCommandInput,
1456
+ options?: __HttpHandlerOptions
1457
+ ): Promise<ListGatewayRulesCommandOutput>;
1458
+ listGatewayRules(
1459
+ args: ListGatewayRulesCommandInput,
1460
+ cb: (err: any, data?: ListGatewayRulesCommandOutput) => void
1461
+ ): void;
1462
+ listGatewayRules(
1463
+ args: ListGatewayRulesCommandInput,
1464
+ options: __HttpHandlerOptions,
1465
+ cb: (err: any, data?: ListGatewayRulesCommandOutput) => void
1466
+ ): void;
1287
1467
  listGateways(): Promise<ListGatewaysCommandOutput>;
1288
1468
  listGateways(
1289
1469
  args: ListGatewaysCommandInput,
@@ -1604,6 +1784,19 @@ export interface BedrockAgentCoreControl {
1604
1784
  options: __HttpHandlerOptions,
1605
1785
  cb: (err: any, data?: UpdateApiKeyCredentialProviderCommandOutput) => void
1606
1786
  ): void;
1787
+ updateConfigurationBundle(
1788
+ args: UpdateConfigurationBundleCommandInput,
1789
+ options?: __HttpHandlerOptions
1790
+ ): Promise<UpdateConfigurationBundleCommandOutput>;
1791
+ updateConfigurationBundle(
1792
+ args: UpdateConfigurationBundleCommandInput,
1793
+ cb: (err: any, data?: UpdateConfigurationBundleCommandOutput) => void
1794
+ ): void;
1795
+ updateConfigurationBundle(
1796
+ args: UpdateConfigurationBundleCommandInput,
1797
+ options: __HttpHandlerOptions,
1798
+ cb: (err: any, data?: UpdateConfigurationBundleCommandOutput) => void
1799
+ ): void;
1607
1800
  updateEvaluator(
1608
1801
  args: UpdateEvaluatorCommandInput,
1609
1802
  options?: __HttpHandlerOptions
@@ -1630,6 +1823,19 @@ export interface BedrockAgentCoreControl {
1630
1823
  options: __HttpHandlerOptions,
1631
1824
  cb: (err: any, data?: UpdateGatewayCommandOutput) => void
1632
1825
  ): void;
1826
+ updateGatewayRule(
1827
+ args: UpdateGatewayRuleCommandInput,
1828
+ options?: __HttpHandlerOptions
1829
+ ): Promise<UpdateGatewayRuleCommandOutput>;
1830
+ updateGatewayRule(
1831
+ args: UpdateGatewayRuleCommandInput,
1832
+ cb: (err: any, data?: UpdateGatewayRuleCommandOutput) => void
1833
+ ): void;
1834
+ updateGatewayRule(
1835
+ args: UpdateGatewayRuleCommandInput,
1836
+ options: __HttpHandlerOptions,
1837
+ cb: (err: any, data?: UpdateGatewayRuleCommandOutput) => void
1838
+ ): void;
1633
1839
  updateGatewayTarget(
1634
1840
  args: UpdateGatewayTargetCommandInput,
1635
1841
  options?: __HttpHandlerOptions
@@ -1822,6 +2028,20 @@ export interface BedrockAgentCoreControl {
1822
2028
  Exclude<keyof PaginationConfiguration, "client">
1823
2029
  >
1824
2030
  ): Paginator<ListCodeInterpretersCommandOutput>;
2031
+ paginateListConfigurationBundles(
2032
+ args?: ListConfigurationBundlesCommandInput,
2033
+ paginationConfig?: Pick<
2034
+ PaginationConfiguration,
2035
+ Exclude<keyof PaginationConfiguration, "client">
2036
+ >
2037
+ ): Paginator<ListConfigurationBundlesCommandOutput>;
2038
+ paginateListConfigurationBundleVersions(
2039
+ args: ListConfigurationBundleVersionsCommandInput,
2040
+ paginationConfig?: Pick<
2041
+ PaginationConfiguration,
2042
+ Exclude<keyof PaginationConfiguration, "client">
2043
+ >
2044
+ ): Paginator<ListConfigurationBundleVersionsCommandOutput>;
1825
2045
  paginateListEvaluators(
1826
2046
  args?: ListEvaluatorsCommandInput,
1827
2047
  paginationConfig?: Pick<
@@ -1829,6 +2049,13 @@ export interface BedrockAgentCoreControl {
1829
2049
  Exclude<keyof PaginationConfiguration, "client">
1830
2050
  >
1831
2051
  ): Paginator<ListEvaluatorsCommandOutput>;
2052
+ paginateListGatewayRules(
2053
+ args: ListGatewayRulesCommandInput,
2054
+ paginationConfig?: Pick<
2055
+ PaginationConfiguration,
2056
+ Exclude<keyof PaginationConfiguration, "client">
2057
+ >
2058
+ ): Paginator<ListGatewayRulesCommandOutput>;
1832
2059
  paginateListGateways(
1833
2060
  args?: ListGatewaysCommandInput,
1834
2061
  paginationConfig?: Pick<
@@ -1928,7 +2155,7 @@ export interface BedrockAgentCoreControl {
1928
2155
  WaiterConfiguration<BedrockAgentCoreControl>,
1929
2156
  Exclude<keyof WaiterConfiguration<BedrockAgentCoreControl>, "client">
1930
2157
  >
1931
- ): Promise<WaiterResult>;
2158
+ ): Promise<WaiterResult<GetMemoryCommandOutput>>;
1932
2159
  waitUntilPolicyActive(
1933
2160
  args: GetPolicyCommandInput,
1934
2161
  waiterConfig:
@@ -1937,7 +2164,7 @@ export interface BedrockAgentCoreControl {
1937
2164
  WaiterConfiguration<BedrockAgentCoreControl>,
1938
2165
  Exclude<keyof WaiterConfiguration<BedrockAgentCoreControl>, "client">
1939
2166
  >
1940
- ): Promise<WaiterResult>;
2167
+ ): Promise<WaiterResult<GetPolicyCommandOutput>>;
1941
2168
  waitUntilPolicyDeleted(
1942
2169
  args: GetPolicyCommandInput,
1943
2170
  waiterConfig:
@@ -1946,7 +2173,7 @@ export interface BedrockAgentCoreControl {
1946
2173
  WaiterConfiguration<BedrockAgentCoreControl>,
1947
2174
  Exclude<keyof WaiterConfiguration<BedrockAgentCoreControl>, "client">
1948
2175
  >
1949
- ): Promise<WaiterResult>;
2176
+ ): Promise<WaiterResult<ResourceNotFoundException>>;
1950
2177
  waitUntilPolicyEngineActive(
1951
2178
  args: GetPolicyEngineCommandInput,
1952
2179
  waiterConfig:
@@ -1955,7 +2182,7 @@ export interface BedrockAgentCoreControl {
1955
2182
  WaiterConfiguration<BedrockAgentCoreControl>,
1956
2183
  Exclude<keyof WaiterConfiguration<BedrockAgentCoreControl>, "client">
1957
2184
  >
1958
- ): Promise<WaiterResult>;
2185
+ ): Promise<WaiterResult<GetPolicyEngineCommandOutput>>;
1959
2186
  waitUntilPolicyEngineDeleted(
1960
2187
  args: GetPolicyEngineCommandInput,
1961
2188
  waiterConfig:
@@ -1964,7 +2191,7 @@ export interface BedrockAgentCoreControl {
1964
2191
  WaiterConfiguration<BedrockAgentCoreControl>,
1965
2192
  Exclude<keyof WaiterConfiguration<BedrockAgentCoreControl>, "client">
1966
2193
  >
1967
- ): Promise<WaiterResult>;
2194
+ ): Promise<WaiterResult<ResourceNotFoundException>>;
1968
2195
  waitUntilPolicyGenerationCompleted(
1969
2196
  args: GetPolicyGenerationCommandInput,
1970
2197
  waiterConfig:
@@ -1973,7 +2200,7 @@ export interface BedrockAgentCoreControl {
1973
2200
  WaiterConfiguration<BedrockAgentCoreControl>,
1974
2201
  Exclude<keyof WaiterConfiguration<BedrockAgentCoreControl>, "client">
1975
2202
  >
1976
- ): Promise<WaiterResult>;
2203
+ ): Promise<WaiterResult<GetPolicyGenerationCommandOutput>>;
1977
2204
  }
1978
2205
  export declare class BedrockAgentCoreControl
1979
2206
  extends BedrockAgentCoreControlClient
@@ -68,6 +68,10 @@ import {
68
68
  CreateCodeInterpreterCommandInput,
69
69
  CreateCodeInterpreterCommandOutput,
70
70
  } from "./commands/CreateCodeInterpreterCommand";
71
+ import {
72
+ CreateConfigurationBundleCommandInput,
73
+ CreateConfigurationBundleCommandOutput,
74
+ } from "./commands/CreateConfigurationBundleCommand";
71
75
  import {
72
76
  CreateEvaluatorCommandInput,
73
77
  CreateEvaluatorCommandOutput,
@@ -76,6 +80,10 @@ import {
76
80
  CreateGatewayCommandInput,
77
81
  CreateGatewayCommandOutput,
78
82
  } from "./commands/CreateGatewayCommand";
83
+ import {
84
+ CreateGatewayRuleCommandInput,
85
+ CreateGatewayRuleCommandOutput,
86
+ } from "./commands/CreateGatewayRuleCommand";
79
87
  import {
80
88
  CreateGatewayTargetCommandInput,
81
89
  CreateGatewayTargetCommandOutput,
@@ -140,6 +148,10 @@ import {
140
148
  DeleteCodeInterpreterCommandInput,
141
149
  DeleteCodeInterpreterCommandOutput,
142
150
  } from "./commands/DeleteCodeInterpreterCommand";
151
+ import {
152
+ DeleteConfigurationBundleCommandInput,
153
+ DeleteConfigurationBundleCommandOutput,
154
+ } from "./commands/DeleteConfigurationBundleCommand";
143
155
  import {
144
156
  DeleteEvaluatorCommandInput,
145
157
  DeleteEvaluatorCommandOutput,
@@ -148,6 +160,10 @@ import {
148
160
  DeleteGatewayCommandInput,
149
161
  DeleteGatewayCommandOutput,
150
162
  } from "./commands/DeleteGatewayCommand";
163
+ import {
164
+ DeleteGatewayRuleCommandInput,
165
+ DeleteGatewayRuleCommandOutput,
166
+ } from "./commands/DeleteGatewayRuleCommand";
151
167
  import {
152
168
  DeleteGatewayTargetCommandInput,
153
169
  DeleteGatewayTargetCommandOutput,
@@ -216,6 +232,14 @@ import {
216
232
  GetCodeInterpreterCommandInput,
217
233
  GetCodeInterpreterCommandOutput,
218
234
  } from "./commands/GetCodeInterpreterCommand";
235
+ import {
236
+ GetConfigurationBundleCommandInput,
237
+ GetConfigurationBundleCommandOutput,
238
+ } from "./commands/GetConfigurationBundleCommand";
239
+ import {
240
+ GetConfigurationBundleVersionCommandInput,
241
+ GetConfigurationBundleVersionCommandOutput,
242
+ } from "./commands/GetConfigurationBundleVersionCommand";
219
243
  import {
220
244
  GetEvaluatorCommandInput,
221
245
  GetEvaluatorCommandOutput,
@@ -224,6 +248,10 @@ import {
224
248
  GetGatewayCommandInput,
225
249
  GetGatewayCommandOutput,
226
250
  } from "./commands/GetGatewayCommand";
251
+ import {
252
+ GetGatewayRuleCommandInput,
253
+ GetGatewayRuleCommandOutput,
254
+ } from "./commands/GetGatewayRuleCommand";
227
255
  import {
228
256
  GetGatewayTargetCommandInput,
229
257
  GetGatewayTargetCommandOutput,
@@ -304,10 +332,22 @@ import {
304
332
  ListCodeInterpretersCommandInput,
305
333
  ListCodeInterpretersCommandOutput,
306
334
  } from "./commands/ListCodeInterpretersCommand";
335
+ import {
336
+ ListConfigurationBundlesCommandInput,
337
+ ListConfigurationBundlesCommandOutput,
338
+ } from "./commands/ListConfigurationBundlesCommand";
339
+ import {
340
+ ListConfigurationBundleVersionsCommandInput,
341
+ ListConfigurationBundleVersionsCommandOutput,
342
+ } from "./commands/ListConfigurationBundleVersionsCommand";
307
343
  import {
308
344
  ListEvaluatorsCommandInput,
309
345
  ListEvaluatorsCommandOutput,
310
346
  } from "./commands/ListEvaluatorsCommand";
347
+ import {
348
+ ListGatewayRulesCommandInput,
349
+ ListGatewayRulesCommandOutput,
350
+ } from "./commands/ListGatewayRulesCommand";
311
351
  import {
312
352
  ListGatewaysCommandInput,
313
353
  ListGatewaysCommandOutput,
@@ -404,6 +444,10 @@ import {
404
444
  UpdateApiKeyCredentialProviderCommandInput,
405
445
  UpdateApiKeyCredentialProviderCommandOutput,
406
446
  } from "./commands/UpdateApiKeyCredentialProviderCommand";
447
+ import {
448
+ UpdateConfigurationBundleCommandInput,
449
+ UpdateConfigurationBundleCommandOutput,
450
+ } from "./commands/UpdateConfigurationBundleCommand";
407
451
  import {
408
452
  UpdateEvaluatorCommandInput,
409
453
  UpdateEvaluatorCommandOutput,
@@ -412,6 +456,10 @@ import {
412
456
  UpdateGatewayCommandInput,
413
457
  UpdateGatewayCommandOutput,
414
458
  } from "./commands/UpdateGatewayCommand";
459
+ import {
460
+ UpdateGatewayRuleCommandInput,
461
+ UpdateGatewayRuleCommandOutput,
462
+ } from "./commands/UpdateGatewayRuleCommand";
415
463
  import {
416
464
  UpdateGatewayTargetCommandInput,
417
465
  UpdateGatewayTargetCommandOutput,
@@ -470,8 +518,10 @@ export type ServiceInputTypes =
470
518
  | CreateBrowserCommandInput
471
519
  | CreateBrowserProfileCommandInput
472
520
  | CreateCodeInterpreterCommandInput
521
+ | CreateConfigurationBundleCommandInput
473
522
  | CreateEvaluatorCommandInput
474
523
  | CreateGatewayCommandInput
524
+ | CreateGatewayRuleCommandInput
475
525
  | CreateGatewayTargetCommandInput
476
526
  | CreateHarnessCommandInput
477
527
  | CreateMemoryCommandInput
@@ -488,8 +538,10 @@ export type ServiceInputTypes =
488
538
  | DeleteBrowserCommandInput
489
539
  | DeleteBrowserProfileCommandInput
490
540
  | DeleteCodeInterpreterCommandInput
541
+ | DeleteConfigurationBundleCommandInput
491
542
  | DeleteEvaluatorCommandInput
492
543
  | DeleteGatewayCommandInput
544
+ | DeleteGatewayRuleCommandInput
493
545
  | DeleteGatewayTargetCommandInput
494
546
  | DeleteHarnessCommandInput
495
547
  | DeleteMemoryCommandInput
@@ -507,8 +559,11 @@ export type ServiceInputTypes =
507
559
  | GetBrowserCommandInput
508
560
  | GetBrowserProfileCommandInput
509
561
  | GetCodeInterpreterCommandInput
562
+ | GetConfigurationBundleCommandInput
563
+ | GetConfigurationBundleVersionCommandInput
510
564
  | GetEvaluatorCommandInput
511
565
  | GetGatewayCommandInput
566
+ | GetGatewayRuleCommandInput
512
567
  | GetGatewayTargetCommandInput
513
568
  | GetHarnessCommandInput
514
569
  | GetMemoryCommandInput
@@ -529,7 +584,10 @@ export type ServiceInputTypes =
529
584
  | ListBrowserProfilesCommandInput
530
585
  | ListBrowsersCommandInput
531
586
  | ListCodeInterpretersCommandInput
587
+ | ListConfigurationBundleVersionsCommandInput
588
+ | ListConfigurationBundlesCommandInput
532
589
  | ListEvaluatorsCommandInput
590
+ | ListGatewayRulesCommandInput
533
591
  | ListGatewayTargetsCommandInput
534
592
  | ListGatewaysCommandInput
535
593
  | ListHarnessesCommandInput
@@ -554,8 +612,10 @@ export type ServiceInputTypes =
554
612
  | UpdateAgentRuntimeCommandInput
555
613
  | UpdateAgentRuntimeEndpointCommandInput
556
614
  | UpdateApiKeyCredentialProviderCommandInput
615
+ | UpdateConfigurationBundleCommandInput
557
616
  | UpdateEvaluatorCommandInput
558
617
  | UpdateGatewayCommandInput
618
+ | UpdateGatewayRuleCommandInput
559
619
  | UpdateGatewayTargetCommandInput
560
620
  | UpdateHarnessCommandInput
561
621
  | UpdateMemoryCommandInput
@@ -574,8 +634,10 @@ export type ServiceOutputTypes =
574
634
  | CreateBrowserCommandOutput
575
635
  | CreateBrowserProfileCommandOutput
576
636
  | CreateCodeInterpreterCommandOutput
637
+ | CreateConfigurationBundleCommandOutput
577
638
  | CreateEvaluatorCommandOutput
578
639
  | CreateGatewayCommandOutput
640
+ | CreateGatewayRuleCommandOutput
579
641
  | CreateGatewayTargetCommandOutput
580
642
  | CreateHarnessCommandOutput
581
643
  | CreateMemoryCommandOutput
@@ -592,8 +654,10 @@ export type ServiceOutputTypes =
592
654
  | DeleteBrowserCommandOutput
593
655
  | DeleteBrowserProfileCommandOutput
594
656
  | DeleteCodeInterpreterCommandOutput
657
+ | DeleteConfigurationBundleCommandOutput
595
658
  | DeleteEvaluatorCommandOutput
596
659
  | DeleteGatewayCommandOutput
660
+ | DeleteGatewayRuleCommandOutput
597
661
  | DeleteGatewayTargetCommandOutput
598
662
  | DeleteHarnessCommandOutput
599
663
  | DeleteMemoryCommandOutput
@@ -611,8 +675,11 @@ export type ServiceOutputTypes =
611
675
  | GetBrowserCommandOutput
612
676
  | GetBrowserProfileCommandOutput
613
677
  | GetCodeInterpreterCommandOutput
678
+ | GetConfigurationBundleCommandOutput
679
+ | GetConfigurationBundleVersionCommandOutput
614
680
  | GetEvaluatorCommandOutput
615
681
  | GetGatewayCommandOutput
682
+ | GetGatewayRuleCommandOutput
616
683
  | GetGatewayTargetCommandOutput
617
684
  | GetHarnessCommandOutput
618
685
  | GetMemoryCommandOutput
@@ -633,7 +700,10 @@ export type ServiceOutputTypes =
633
700
  | ListBrowserProfilesCommandOutput
634
701
  | ListBrowsersCommandOutput
635
702
  | ListCodeInterpretersCommandOutput
703
+ | ListConfigurationBundleVersionsCommandOutput
704
+ | ListConfigurationBundlesCommandOutput
636
705
  | ListEvaluatorsCommandOutput
706
+ | ListGatewayRulesCommandOutput
637
707
  | ListGatewayTargetsCommandOutput
638
708
  | ListGatewaysCommandOutput
639
709
  | ListHarnessesCommandOutput
@@ -658,8 +728,10 @@ export type ServiceOutputTypes =
658
728
  | UpdateAgentRuntimeCommandOutput
659
729
  | UpdateAgentRuntimeEndpointCommandOutput
660
730
  | UpdateApiKeyCredentialProviderCommandOutput
731
+ | UpdateConfigurationBundleCommandOutput
661
732
  | UpdateEvaluatorCommandOutput
662
733
  | UpdateGatewayCommandOutput
734
+ | UpdateGatewayRuleCommandOutput
663
735
  | UpdateGatewayTargetCommandOutput
664
736
  | UpdateHarnessCommandOutput
665
737
  | UpdateMemoryCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ CreateConfigurationBundleRequest,
10
+ CreateConfigurationBundleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateConfigurationBundleCommandInput
15
+ extends CreateConfigurationBundleRequest {}
16
+ export interface CreateConfigurationBundleCommandOutput
17
+ extends CreateConfigurationBundleResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateConfigurationBundleCommand_base: {
20
+ new (
21
+ input: CreateConfigurationBundleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateConfigurationBundleCommandInput,
24
+ CreateConfigurationBundleCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateConfigurationBundleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateConfigurationBundleCommandInput,
33
+ CreateConfigurationBundleCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateConfigurationBundleCommand extends CreateConfigurationBundleCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateConfigurationBundleRequest;
44
+ output: CreateConfigurationBundleResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateConfigurationBundleCommandInput;
48
+ output: CreateConfigurationBundleCommandOutput;
49
+ };
50
+ };
51
+ }