@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
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetMemoryCommand } from "../commands/GetMemoryCommand";
2
+ import { GetMemoryCommand, } from "../commands/GetMemoryCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyCommand } from "../commands/GetPolicyCommand";
2
+ import { GetPolicyCommand, } from "../commands/GetPolicyCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyCommand } from "../commands/GetPolicyCommand";
2
+ import { GetPolicyCommand, } from "../commands/GetPolicyCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ResourceNotFoundException") {
29
+ if (exception.name === "ResourceNotFoundException") {
30
30
  return { state: WaiterState.SUCCESS, reason };
31
31
  }
32
32
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyEngineCommand } from "../commands/GetPolicyEngineCommand";
2
+ import { GetPolicyEngineCommand, } from "../commands/GetPolicyEngineCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyEngineCommand } from "../commands/GetPolicyEngineCommand";
2
+ import { GetPolicyEngineCommand, } from "../commands/GetPolicyEngineCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ResourceNotFoundException") {
29
+ if (exception.name === "ResourceNotFoundException") {
30
30
  return { state: WaiterState.SUCCESS, reason };
31
31
  }
32
32
  }
@@ -7,8 +7,10 @@ import { type CreateApiKeyCredentialProviderCommandInput, type CreateApiKeyCrede
7
7
  import { type CreateBrowserCommandInput, type CreateBrowserCommandOutput } from "./commands/CreateBrowserCommand";
8
8
  import { type CreateBrowserProfileCommandInput, type CreateBrowserProfileCommandOutput } from "./commands/CreateBrowserProfileCommand";
9
9
  import { type CreateCodeInterpreterCommandInput, type CreateCodeInterpreterCommandOutput } from "./commands/CreateCodeInterpreterCommand";
10
+ import { type CreateConfigurationBundleCommandInput, type CreateConfigurationBundleCommandOutput } from "./commands/CreateConfigurationBundleCommand";
10
11
  import { type CreateEvaluatorCommandInput, type CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
11
12
  import { type CreateGatewayCommandInput, type CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
13
+ import { type CreateGatewayRuleCommandInput, type CreateGatewayRuleCommandOutput } from "./commands/CreateGatewayRuleCommand";
12
14
  import { type CreateGatewayTargetCommandInput, type CreateGatewayTargetCommandOutput } from "./commands/CreateGatewayTargetCommand";
13
15
  import { type CreateHarnessCommandInput, type CreateHarnessCommandOutput } from "./commands/CreateHarnessCommand";
14
16
  import { type CreateMemoryCommandInput, type CreateMemoryCommandOutput } from "./commands/CreateMemoryCommand";
@@ -25,8 +27,10 @@ import { type DeleteApiKeyCredentialProviderCommandInput, type DeleteApiKeyCrede
25
27
  import { type DeleteBrowserCommandInput, type DeleteBrowserCommandOutput } from "./commands/DeleteBrowserCommand";
26
28
  import { type DeleteBrowserProfileCommandInput, type DeleteBrowserProfileCommandOutput } from "./commands/DeleteBrowserProfileCommand";
27
29
  import { type DeleteCodeInterpreterCommandInput, type DeleteCodeInterpreterCommandOutput } from "./commands/DeleteCodeInterpreterCommand";
30
+ import { type DeleteConfigurationBundleCommandInput, type DeleteConfigurationBundleCommandOutput } from "./commands/DeleteConfigurationBundleCommand";
28
31
  import { type DeleteEvaluatorCommandInput, type DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
29
32
  import { type DeleteGatewayCommandInput, type DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
33
+ import { type DeleteGatewayRuleCommandInput, type DeleteGatewayRuleCommandOutput } from "./commands/DeleteGatewayRuleCommand";
30
34
  import { type DeleteGatewayTargetCommandInput, type DeleteGatewayTargetCommandOutput } from "./commands/DeleteGatewayTargetCommand";
31
35
  import { type DeleteHarnessCommandInput, type DeleteHarnessCommandOutput } from "./commands/DeleteHarnessCommand";
32
36
  import { type DeleteMemoryCommandInput, type DeleteMemoryCommandOutput } from "./commands/DeleteMemoryCommand";
@@ -44,8 +48,11 @@ import { type GetApiKeyCredentialProviderCommandInput, type GetApiKeyCredentialP
44
48
  import { type GetBrowserCommandInput, type GetBrowserCommandOutput } from "./commands/GetBrowserCommand";
45
49
  import { type GetBrowserProfileCommandInput, type GetBrowserProfileCommandOutput } from "./commands/GetBrowserProfileCommand";
46
50
  import { type GetCodeInterpreterCommandInput, type GetCodeInterpreterCommandOutput } from "./commands/GetCodeInterpreterCommand";
51
+ import { type GetConfigurationBundleCommandInput, type GetConfigurationBundleCommandOutput } from "./commands/GetConfigurationBundleCommand";
52
+ import { type GetConfigurationBundleVersionCommandInput, type GetConfigurationBundleVersionCommandOutput } from "./commands/GetConfigurationBundleVersionCommand";
47
53
  import { type GetEvaluatorCommandInput, type GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
48
54
  import { type GetGatewayCommandInput, type GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
55
+ import { type GetGatewayRuleCommandInput, type GetGatewayRuleCommandOutput } from "./commands/GetGatewayRuleCommand";
49
56
  import { type GetGatewayTargetCommandInput, type GetGatewayTargetCommandOutput } from "./commands/GetGatewayTargetCommand";
50
57
  import { type GetHarnessCommandInput, type GetHarnessCommandOutput } from "./commands/GetHarnessCommand";
51
58
  import { type GetMemoryCommandInput, type GetMemoryCommandOutput } from "./commands/GetMemoryCommand";
@@ -66,7 +73,10 @@ import { type ListApiKeyCredentialProvidersCommandInput, type ListApiKeyCredenti
66
73
  import { type ListBrowserProfilesCommandInput, type ListBrowserProfilesCommandOutput } from "./commands/ListBrowserProfilesCommand";
67
74
  import { type ListBrowsersCommandInput, type ListBrowsersCommandOutput } from "./commands/ListBrowsersCommand";
68
75
  import { type ListCodeInterpretersCommandInput, type ListCodeInterpretersCommandOutput } from "./commands/ListCodeInterpretersCommand";
76
+ import { type ListConfigurationBundlesCommandInput, type ListConfigurationBundlesCommandOutput } from "./commands/ListConfigurationBundlesCommand";
77
+ import { type ListConfigurationBundleVersionsCommandInput, type ListConfigurationBundleVersionsCommandOutput } from "./commands/ListConfigurationBundleVersionsCommand";
69
78
  import { type ListEvaluatorsCommandInput, type ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
79
+ import { type ListGatewayRulesCommandInput, type ListGatewayRulesCommandOutput } from "./commands/ListGatewayRulesCommand";
70
80
  import { type ListGatewaysCommandInput, type ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
71
81
  import { type ListGatewayTargetsCommandInput, type ListGatewayTargetsCommandOutput } from "./commands/ListGatewayTargetsCommand";
72
82
  import { type ListHarnessesCommandInput, type ListHarnessesCommandOutput } from "./commands/ListHarnessesCommand";
@@ -91,8 +101,10 @@ import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from
91
101
  import { type UpdateAgentRuntimeCommandInput, type UpdateAgentRuntimeCommandOutput } from "./commands/UpdateAgentRuntimeCommand";
92
102
  import { type UpdateAgentRuntimeEndpointCommandInput, type UpdateAgentRuntimeEndpointCommandOutput } from "./commands/UpdateAgentRuntimeEndpointCommand";
93
103
  import { type UpdateApiKeyCredentialProviderCommandInput, type UpdateApiKeyCredentialProviderCommandOutput } from "./commands/UpdateApiKeyCredentialProviderCommand";
104
+ import { type UpdateConfigurationBundleCommandInput, type UpdateConfigurationBundleCommandOutput } from "./commands/UpdateConfigurationBundleCommand";
94
105
  import { type UpdateEvaluatorCommandInput, type UpdateEvaluatorCommandOutput } from "./commands/UpdateEvaluatorCommand";
95
106
  import { type UpdateGatewayCommandInput, type UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
107
+ import { type UpdateGatewayRuleCommandInput, type UpdateGatewayRuleCommandOutput } from "./commands/UpdateGatewayRuleCommand";
96
108
  import { type UpdateGatewayTargetCommandInput, type UpdateGatewayTargetCommandOutput } from "./commands/UpdateGatewayTargetCommand";
97
109
  import { type UpdateHarnessCommandInput, type UpdateHarnessCommandOutput } from "./commands/UpdateHarnessCommand";
98
110
  import { type UpdateMemoryCommandInput, type UpdateMemoryCommandOutput } from "./commands/UpdateMemoryCommand";
@@ -104,6 +116,7 @@ import { type UpdateRegistryCommandInput, type UpdateRegistryCommandOutput } fro
104
116
  import { type UpdateRegistryRecordCommandInput, type UpdateRegistryRecordCommandOutput } from "./commands/UpdateRegistryRecordCommand";
105
117
  import { type UpdateRegistryRecordStatusCommandInput, type UpdateRegistryRecordStatusCommandOutput } from "./commands/UpdateRegistryRecordStatusCommand";
106
118
  import { type UpdateWorkloadIdentityCommandInput, type UpdateWorkloadIdentityCommandOutput } from "./commands/UpdateWorkloadIdentityCommand";
119
+ import type { ResourceNotFoundException } from "./models/errors";
107
120
  export interface BedrockAgentCoreControl {
108
121
  /**
109
122
  * @see {@link CreateAgentRuntimeCommand}
@@ -141,6 +154,12 @@ export interface BedrockAgentCoreControl {
141
154
  createCodeInterpreter(args: CreateCodeInterpreterCommandInput, options?: __HttpHandlerOptions): Promise<CreateCodeInterpreterCommandOutput>;
142
155
  createCodeInterpreter(args: CreateCodeInterpreterCommandInput, cb: (err: any, data?: CreateCodeInterpreterCommandOutput) => void): void;
143
156
  createCodeInterpreter(args: CreateCodeInterpreterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCodeInterpreterCommandOutput) => void): void;
157
+ /**
158
+ * @see {@link CreateConfigurationBundleCommand}
159
+ */
160
+ createConfigurationBundle(args: CreateConfigurationBundleCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationBundleCommandOutput>;
161
+ createConfigurationBundle(args: CreateConfigurationBundleCommandInput, cb: (err: any, data?: CreateConfigurationBundleCommandOutput) => void): void;
162
+ createConfigurationBundle(args: CreateConfigurationBundleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationBundleCommandOutput) => void): void;
144
163
  /**
145
164
  * @see {@link CreateEvaluatorCommand}
146
165
  */
@@ -153,6 +172,12 @@ export interface BedrockAgentCoreControl {
153
172
  createGateway(args: CreateGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateGatewayCommandOutput>;
154
173
  createGateway(args: CreateGatewayCommandInput, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
155
174
  createGateway(args: CreateGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
175
+ /**
176
+ * @see {@link CreateGatewayRuleCommand}
177
+ */
178
+ createGatewayRule(args: CreateGatewayRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateGatewayRuleCommandOutput>;
179
+ createGatewayRule(args: CreateGatewayRuleCommandInput, cb: (err: any, data?: CreateGatewayRuleCommandOutput) => void): void;
180
+ createGatewayRule(args: CreateGatewayRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGatewayRuleCommandOutput) => void): void;
156
181
  /**
157
182
  * @see {@link CreateGatewayTargetCommand}
158
183
  */
@@ -249,6 +274,12 @@ export interface BedrockAgentCoreControl {
249
274
  deleteCodeInterpreter(args: DeleteCodeInterpreterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCodeInterpreterCommandOutput>;
250
275
  deleteCodeInterpreter(args: DeleteCodeInterpreterCommandInput, cb: (err: any, data?: DeleteCodeInterpreterCommandOutput) => void): void;
251
276
  deleteCodeInterpreter(args: DeleteCodeInterpreterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCodeInterpreterCommandOutput) => void): void;
277
+ /**
278
+ * @see {@link DeleteConfigurationBundleCommand}
279
+ */
280
+ deleteConfigurationBundle(args: DeleteConfigurationBundleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationBundleCommandOutput>;
281
+ deleteConfigurationBundle(args: DeleteConfigurationBundleCommandInput, cb: (err: any, data?: DeleteConfigurationBundleCommandOutput) => void): void;
282
+ deleteConfigurationBundle(args: DeleteConfigurationBundleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationBundleCommandOutput) => void): void;
252
283
  /**
253
284
  * @see {@link DeleteEvaluatorCommand}
254
285
  */
@@ -261,6 +292,12 @@ export interface BedrockAgentCoreControl {
261
292
  deleteGateway(args: DeleteGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayCommandOutput>;
262
293
  deleteGateway(args: DeleteGatewayCommandInput, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
263
294
  deleteGateway(args: DeleteGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
295
+ /**
296
+ * @see {@link DeleteGatewayRuleCommand}
297
+ */
298
+ deleteGatewayRule(args: DeleteGatewayRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayRuleCommandOutput>;
299
+ deleteGatewayRule(args: DeleteGatewayRuleCommandInput, cb: (err: any, data?: DeleteGatewayRuleCommandOutput) => void): void;
300
+ deleteGatewayRule(args: DeleteGatewayRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayRuleCommandOutput) => void): void;
264
301
  /**
265
302
  * @see {@link DeleteGatewayTargetCommand}
266
303
  */
@@ -363,6 +400,18 @@ export interface BedrockAgentCoreControl {
363
400
  getCodeInterpreter(args: GetCodeInterpreterCommandInput, options?: __HttpHandlerOptions): Promise<GetCodeInterpreterCommandOutput>;
364
401
  getCodeInterpreter(args: GetCodeInterpreterCommandInput, cb: (err: any, data?: GetCodeInterpreterCommandOutput) => void): void;
365
402
  getCodeInterpreter(args: GetCodeInterpreterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCodeInterpreterCommandOutput) => void): void;
403
+ /**
404
+ * @see {@link GetConfigurationBundleCommand}
405
+ */
406
+ getConfigurationBundle(args: GetConfigurationBundleCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationBundleCommandOutput>;
407
+ getConfigurationBundle(args: GetConfigurationBundleCommandInput, cb: (err: any, data?: GetConfigurationBundleCommandOutput) => void): void;
408
+ getConfigurationBundle(args: GetConfigurationBundleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationBundleCommandOutput) => void): void;
409
+ /**
410
+ * @see {@link GetConfigurationBundleVersionCommand}
411
+ */
412
+ getConfigurationBundleVersion(args: GetConfigurationBundleVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationBundleVersionCommandOutput>;
413
+ getConfigurationBundleVersion(args: GetConfigurationBundleVersionCommandInput, cb: (err: any, data?: GetConfigurationBundleVersionCommandOutput) => void): void;
414
+ getConfigurationBundleVersion(args: GetConfigurationBundleVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationBundleVersionCommandOutput) => void): void;
366
415
  /**
367
416
  * @see {@link GetEvaluatorCommand}
368
417
  */
@@ -375,6 +424,12 @@ export interface BedrockAgentCoreControl {
375
424
  getGateway(args: GetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<GetGatewayCommandOutput>;
376
425
  getGateway(args: GetGatewayCommandInput, cb: (err: any, data?: GetGatewayCommandOutput) => void): void;
377
426
  getGateway(args: GetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGatewayCommandOutput) => void): void;
427
+ /**
428
+ * @see {@link GetGatewayRuleCommand}
429
+ */
430
+ getGatewayRule(args: GetGatewayRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetGatewayRuleCommandOutput>;
431
+ getGatewayRule(args: GetGatewayRuleCommandInput, cb: (err: any, data?: GetGatewayRuleCommandOutput) => void): void;
432
+ getGatewayRule(args: GetGatewayRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGatewayRuleCommandOutput) => void): void;
378
433
  /**
379
434
  * @see {@link GetGatewayTargetCommand}
380
435
  */
@@ -501,6 +556,19 @@ export interface BedrockAgentCoreControl {
501
556
  listCodeInterpreters(args: ListCodeInterpretersCommandInput, options?: __HttpHandlerOptions): Promise<ListCodeInterpretersCommandOutput>;
502
557
  listCodeInterpreters(args: ListCodeInterpretersCommandInput, cb: (err: any, data?: ListCodeInterpretersCommandOutput) => void): void;
503
558
  listCodeInterpreters(args: ListCodeInterpretersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCodeInterpretersCommandOutput) => void): void;
559
+ /**
560
+ * @see {@link ListConfigurationBundlesCommand}
561
+ */
562
+ listConfigurationBundles(): Promise<ListConfigurationBundlesCommandOutput>;
563
+ listConfigurationBundles(args: ListConfigurationBundlesCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationBundlesCommandOutput>;
564
+ listConfigurationBundles(args: ListConfigurationBundlesCommandInput, cb: (err: any, data?: ListConfigurationBundlesCommandOutput) => void): void;
565
+ listConfigurationBundles(args: ListConfigurationBundlesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationBundlesCommandOutput) => void): void;
566
+ /**
567
+ * @see {@link ListConfigurationBundleVersionsCommand}
568
+ */
569
+ listConfigurationBundleVersions(args: ListConfigurationBundleVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationBundleVersionsCommandOutput>;
570
+ listConfigurationBundleVersions(args: ListConfigurationBundleVersionsCommandInput, cb: (err: any, data?: ListConfigurationBundleVersionsCommandOutput) => void): void;
571
+ listConfigurationBundleVersions(args: ListConfigurationBundleVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationBundleVersionsCommandOutput) => void): void;
504
572
  /**
505
573
  * @see {@link ListEvaluatorsCommand}
506
574
  */
@@ -508,6 +576,12 @@ export interface BedrockAgentCoreControl {
508
576
  listEvaluators(args: ListEvaluatorsCommandInput, options?: __HttpHandlerOptions): Promise<ListEvaluatorsCommandOutput>;
509
577
  listEvaluators(args: ListEvaluatorsCommandInput, cb: (err: any, data?: ListEvaluatorsCommandOutput) => void): void;
510
578
  listEvaluators(args: ListEvaluatorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEvaluatorsCommandOutput) => void): void;
579
+ /**
580
+ * @see {@link ListGatewayRulesCommand}
581
+ */
582
+ listGatewayRules(args: ListGatewayRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListGatewayRulesCommandOutput>;
583
+ listGatewayRules(args: ListGatewayRulesCommandInput, cb: (err: any, data?: ListGatewayRulesCommandOutput) => void): void;
584
+ listGatewayRules(args: ListGatewayRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGatewayRulesCommandOutput) => void): void;
511
585
  /**
512
586
  * @see {@link ListGatewaysCommand}
513
587
  */
@@ -660,6 +734,12 @@ export interface BedrockAgentCoreControl {
660
734
  updateApiKeyCredentialProvider(args: UpdateApiKeyCredentialProviderCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApiKeyCredentialProviderCommandOutput>;
661
735
  updateApiKeyCredentialProvider(args: UpdateApiKeyCredentialProviderCommandInput, cb: (err: any, data?: UpdateApiKeyCredentialProviderCommandOutput) => void): void;
662
736
  updateApiKeyCredentialProvider(args: UpdateApiKeyCredentialProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApiKeyCredentialProviderCommandOutput) => void): void;
737
+ /**
738
+ * @see {@link UpdateConfigurationBundleCommand}
739
+ */
740
+ updateConfigurationBundle(args: UpdateConfigurationBundleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationBundleCommandOutput>;
741
+ updateConfigurationBundle(args: UpdateConfigurationBundleCommandInput, cb: (err: any, data?: UpdateConfigurationBundleCommandOutput) => void): void;
742
+ updateConfigurationBundle(args: UpdateConfigurationBundleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationBundleCommandOutput) => void): void;
663
743
  /**
664
744
  * @see {@link UpdateEvaluatorCommand}
665
745
  */
@@ -672,6 +752,12 @@ export interface BedrockAgentCoreControl {
672
752
  updateGateway(args: UpdateGatewayCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayCommandOutput>;
673
753
  updateGateway(args: UpdateGatewayCommandInput, cb: (err: any, data?: UpdateGatewayCommandOutput) => void): void;
674
754
  updateGateway(args: UpdateGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayCommandOutput) => void): void;
755
+ /**
756
+ * @see {@link UpdateGatewayRuleCommand}
757
+ */
758
+ updateGatewayRule(args: UpdateGatewayRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayRuleCommandOutput>;
759
+ updateGatewayRule(args: UpdateGatewayRuleCommandInput, cb: (err: any, data?: UpdateGatewayRuleCommandOutput) => void): void;
760
+ updateGatewayRule(args: UpdateGatewayRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayRuleCommandOutput) => void): void;
675
761
  /**
676
762
  * @see {@link UpdateGatewayTargetCommand}
677
763
  */
@@ -787,6 +873,20 @@ export interface BedrockAgentCoreControl {
787
873
  * @returns AsyncIterable of {@link ListCodeInterpretersCommandOutput}.
788
874
  */
789
875
  paginateListCodeInterpreters(args?: ListCodeInterpretersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCodeInterpretersCommandOutput>;
876
+ /**
877
+ * @see {@link ListConfigurationBundlesCommand}
878
+ * @param args - command input.
879
+ * @param paginationConfig - optional pagination config.
880
+ * @returns AsyncIterable of {@link ListConfigurationBundlesCommandOutput}.
881
+ */
882
+ paginateListConfigurationBundles(args?: ListConfigurationBundlesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationBundlesCommandOutput>;
883
+ /**
884
+ * @see {@link ListConfigurationBundleVersionsCommand}
885
+ * @param args - command input.
886
+ * @param paginationConfig - optional pagination config.
887
+ * @returns AsyncIterable of {@link ListConfigurationBundleVersionsCommandOutput}.
888
+ */
889
+ paginateListConfigurationBundleVersions(args: ListConfigurationBundleVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationBundleVersionsCommandOutput>;
790
890
  /**
791
891
  * @see {@link ListEvaluatorsCommand}
792
892
  * @param args - command input.
@@ -794,6 +894,13 @@ export interface BedrockAgentCoreControl {
794
894
  * @returns AsyncIterable of {@link ListEvaluatorsCommandOutput}.
795
895
  */
796
896
  paginateListEvaluators(args?: ListEvaluatorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEvaluatorsCommandOutput>;
897
+ /**
898
+ * @see {@link ListGatewayRulesCommand}
899
+ * @param args - command input.
900
+ * @param paginationConfig - optional pagination config.
901
+ * @returns AsyncIterable of {@link ListGatewayRulesCommandOutput}.
902
+ */
903
+ paginateListGatewayRules(args: ListGatewayRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGatewayRulesCommandOutput>;
797
904
  /**
798
905
  * @see {@link ListGatewaysCommand}
799
906
  * @param args - command input.
@@ -890,37 +997,37 @@ export interface BedrockAgentCoreControl {
890
997
  * @param args - command input.
891
998
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
892
999
  */
893
- waitUntilMemoryCreated(args: GetMemoryCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
1000
+ waitUntilMemoryCreated(args: GetMemoryCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetMemoryCommandOutput>>;
894
1001
  /**
895
1002
  * @see {@link GetPolicyCommand}
896
1003
  * @param args - command input.
897
1004
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
898
1005
  */
899
- waitUntilPolicyActive(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
1006
+ waitUntilPolicyActive(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetPolicyCommandOutput>>;
900
1007
  /**
901
1008
  * @see {@link GetPolicyCommand}
902
1009
  * @param args - command input.
903
1010
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
904
1011
  */
905
- waitUntilPolicyDeleted(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
1012
+ waitUntilPolicyDeleted(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<ResourceNotFoundException>>;
906
1013
  /**
907
1014
  * @see {@link GetPolicyEngineCommand}
908
1015
  * @param args - command input.
909
1016
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
910
1017
  */
911
- waitUntilPolicyEngineActive(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
1018
+ waitUntilPolicyEngineActive(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetPolicyEngineCommandOutput>>;
912
1019
  /**
913
1020
  * @see {@link GetPolicyEngineCommand}
914
1021
  * @param args - command input.
915
1022
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
916
1023
  */
917
- waitUntilPolicyEngineDeleted(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
1024
+ waitUntilPolicyEngineDeleted(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<ResourceNotFoundException>>;
918
1025
  /**
919
1026
  * @see {@link GetPolicyGenerationCommand}
920
1027
  * @param args - command input.
921
1028
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
922
1029
  */
923
- waitUntilPolicyGenerationCompleted(args: GetPolicyGenerationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
1030
+ waitUntilPolicyGenerationCompleted(args: GetPolicyGenerationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetPolicyGenerationCommandOutput>>;
924
1031
  }
925
1032
  /**
926
1033
  * <p>Welcome to the Amazon Bedrock AgentCore Control plane API reference. Control plane actions configure, create, modify, and monitor Amazon Web Services resources.</p>
@@ -13,8 +13,10 @@ import type { CreateApiKeyCredentialProviderCommandInput, CreateApiKeyCredential
13
13
  import type { CreateBrowserCommandInput, CreateBrowserCommandOutput } from "./commands/CreateBrowserCommand";
14
14
  import type { CreateBrowserProfileCommandInput, CreateBrowserProfileCommandOutput } from "./commands/CreateBrowserProfileCommand";
15
15
  import type { CreateCodeInterpreterCommandInput, CreateCodeInterpreterCommandOutput } from "./commands/CreateCodeInterpreterCommand";
16
+ import type { CreateConfigurationBundleCommandInput, CreateConfigurationBundleCommandOutput } from "./commands/CreateConfigurationBundleCommand";
16
17
  import type { CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
17
18
  import type { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
19
+ import type { CreateGatewayRuleCommandInput, CreateGatewayRuleCommandOutput } from "./commands/CreateGatewayRuleCommand";
18
20
  import type { CreateGatewayTargetCommandInput, CreateGatewayTargetCommandOutput } from "./commands/CreateGatewayTargetCommand";
19
21
  import type { CreateHarnessCommandInput, CreateHarnessCommandOutput } from "./commands/CreateHarnessCommand";
20
22
  import type { CreateMemoryCommandInput, CreateMemoryCommandOutput } from "./commands/CreateMemoryCommand";
@@ -31,8 +33,10 @@ import type { DeleteApiKeyCredentialProviderCommandInput, DeleteApiKeyCredential
31
33
  import type { DeleteBrowserCommandInput, DeleteBrowserCommandOutput } from "./commands/DeleteBrowserCommand";
32
34
  import type { DeleteBrowserProfileCommandInput, DeleteBrowserProfileCommandOutput } from "./commands/DeleteBrowserProfileCommand";
33
35
  import type { DeleteCodeInterpreterCommandInput, DeleteCodeInterpreterCommandOutput } from "./commands/DeleteCodeInterpreterCommand";
36
+ import type { DeleteConfigurationBundleCommandInput, DeleteConfigurationBundleCommandOutput } from "./commands/DeleteConfigurationBundleCommand";
34
37
  import type { DeleteEvaluatorCommandInput, DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
35
38
  import type { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
39
+ import type { DeleteGatewayRuleCommandInput, DeleteGatewayRuleCommandOutput } from "./commands/DeleteGatewayRuleCommand";
36
40
  import type { DeleteGatewayTargetCommandInput, DeleteGatewayTargetCommandOutput } from "./commands/DeleteGatewayTargetCommand";
37
41
  import type { DeleteHarnessCommandInput, DeleteHarnessCommandOutput } from "./commands/DeleteHarnessCommand";
38
42
  import type { DeleteMemoryCommandInput, DeleteMemoryCommandOutput } from "./commands/DeleteMemoryCommand";
@@ -50,8 +54,11 @@ import type { GetApiKeyCredentialProviderCommandInput, GetApiKeyCredentialProvid
50
54
  import type { GetBrowserCommandInput, GetBrowserCommandOutput } from "./commands/GetBrowserCommand";
51
55
  import type { GetBrowserProfileCommandInput, GetBrowserProfileCommandOutput } from "./commands/GetBrowserProfileCommand";
52
56
  import type { GetCodeInterpreterCommandInput, GetCodeInterpreterCommandOutput } from "./commands/GetCodeInterpreterCommand";
57
+ import type { GetConfigurationBundleCommandInput, GetConfigurationBundleCommandOutput } from "./commands/GetConfigurationBundleCommand";
58
+ import type { GetConfigurationBundleVersionCommandInput, GetConfigurationBundleVersionCommandOutput } from "./commands/GetConfigurationBundleVersionCommand";
53
59
  import type { GetEvaluatorCommandInput, GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
54
60
  import type { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
61
+ import type { GetGatewayRuleCommandInput, GetGatewayRuleCommandOutput } from "./commands/GetGatewayRuleCommand";
55
62
  import type { GetGatewayTargetCommandInput, GetGatewayTargetCommandOutput } from "./commands/GetGatewayTargetCommand";
56
63
  import type { GetHarnessCommandInput, GetHarnessCommandOutput } from "./commands/GetHarnessCommand";
57
64
  import type { GetMemoryCommandInput, GetMemoryCommandOutput } from "./commands/GetMemoryCommand";
@@ -72,7 +79,10 @@ import type { ListApiKeyCredentialProvidersCommandInput, ListApiKeyCredentialPro
72
79
  import type { ListBrowserProfilesCommandInput, ListBrowserProfilesCommandOutput } from "./commands/ListBrowserProfilesCommand";
73
80
  import type { ListBrowsersCommandInput, ListBrowsersCommandOutput } from "./commands/ListBrowsersCommand";
74
81
  import type { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutput } from "./commands/ListCodeInterpretersCommand";
82
+ import type { ListConfigurationBundlesCommandInput, ListConfigurationBundlesCommandOutput } from "./commands/ListConfigurationBundlesCommand";
83
+ import type { ListConfigurationBundleVersionsCommandInput, ListConfigurationBundleVersionsCommandOutput } from "./commands/ListConfigurationBundleVersionsCommand";
75
84
  import type { ListEvaluatorsCommandInput, ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
85
+ import type { ListGatewayRulesCommandInput, ListGatewayRulesCommandOutput } from "./commands/ListGatewayRulesCommand";
76
86
  import type { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
77
87
  import type { ListGatewayTargetsCommandInput, ListGatewayTargetsCommandOutput } from "./commands/ListGatewayTargetsCommand";
78
88
  import type { ListHarnessesCommandInput, ListHarnessesCommandOutput } from "./commands/ListHarnessesCommand";
@@ -97,8 +107,10 @@ import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./co
97
107
  import type { UpdateAgentRuntimeCommandInput, UpdateAgentRuntimeCommandOutput } from "./commands/UpdateAgentRuntimeCommand";
98
108
  import type { UpdateAgentRuntimeEndpointCommandInput, UpdateAgentRuntimeEndpointCommandOutput } from "./commands/UpdateAgentRuntimeEndpointCommand";
99
109
  import type { UpdateApiKeyCredentialProviderCommandInput, UpdateApiKeyCredentialProviderCommandOutput } from "./commands/UpdateApiKeyCredentialProviderCommand";
110
+ import type { UpdateConfigurationBundleCommandInput, UpdateConfigurationBundleCommandOutput } from "./commands/UpdateConfigurationBundleCommand";
100
111
  import type { UpdateEvaluatorCommandInput, UpdateEvaluatorCommandOutput } from "./commands/UpdateEvaluatorCommand";
101
112
  import type { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
113
+ import type { UpdateGatewayRuleCommandInput, UpdateGatewayRuleCommandOutput } from "./commands/UpdateGatewayRuleCommand";
102
114
  import type { UpdateGatewayTargetCommandInput, UpdateGatewayTargetCommandOutput } from "./commands/UpdateGatewayTargetCommand";
103
115
  import type { UpdateHarnessCommandInput, UpdateHarnessCommandOutput } from "./commands/UpdateHarnessCommand";
104
116
  import type { UpdateMemoryCommandInput, UpdateMemoryCommandOutput } from "./commands/UpdateMemoryCommand";
@@ -116,11 +128,11 @@ export { __Client };
116
128
  /**
117
129
  * @public
118
130
  */
119
- export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateBrowserProfileCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateHarnessCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateRegistryCommandInput | CreateRegistryRecordCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteBrowserProfileCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteHarnessCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteRegistryCommandInput | DeleteRegistryRecordCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetBrowserProfileCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetHarnessCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetRegistryCommandInput | GetRegistryRecordCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowserProfilesCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListHarnessesCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListRegistriesCommandInput | ListRegistryRecordsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SubmitRegistryRecordForApprovalCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateHarnessCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateRegistryCommandInput | UpdateRegistryRecordCommandInput | UpdateRegistryRecordStatusCommandInput | UpdateWorkloadIdentityCommandInput;
131
+ export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateBrowserProfileCommandInput | CreateCodeInterpreterCommandInput | CreateConfigurationBundleCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayRuleCommandInput | CreateGatewayTargetCommandInput | CreateHarnessCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateRegistryCommandInput | CreateRegistryRecordCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteBrowserProfileCommandInput | DeleteCodeInterpreterCommandInput | DeleteConfigurationBundleCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayRuleCommandInput | DeleteGatewayTargetCommandInput | DeleteHarnessCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteRegistryCommandInput | DeleteRegistryRecordCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetBrowserProfileCommandInput | GetCodeInterpreterCommandInput | GetConfigurationBundleCommandInput | GetConfigurationBundleVersionCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayRuleCommandInput | GetGatewayTargetCommandInput | GetHarnessCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetRegistryCommandInput | GetRegistryRecordCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowserProfilesCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListConfigurationBundleVersionsCommandInput | ListConfigurationBundlesCommandInput | ListEvaluatorsCommandInput | ListGatewayRulesCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListHarnessesCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListRegistriesCommandInput | ListRegistryRecordsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SubmitRegistryRecordForApprovalCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateConfigurationBundleCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayRuleCommandInput | UpdateGatewayTargetCommandInput | UpdateHarnessCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateRegistryCommandInput | UpdateRegistryRecordCommandInput | UpdateRegistryRecordStatusCommandInput | UpdateWorkloadIdentityCommandInput;
120
132
  /**
121
133
  * @public
122
134
  */
123
- export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateBrowserProfileCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateHarnessCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateRegistryCommandOutput | CreateRegistryRecordCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteBrowserProfileCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteHarnessCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteRegistryCommandOutput | DeleteRegistryRecordCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetBrowserProfileCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetHarnessCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetRegistryCommandOutput | GetRegistryRecordCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowserProfilesCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListHarnessesCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListRegistriesCommandOutput | ListRegistryRecordsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SubmitRegistryRecordForApprovalCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateHarnessCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateRegistryCommandOutput | UpdateRegistryRecordCommandOutput | UpdateRegistryRecordStatusCommandOutput | UpdateWorkloadIdentityCommandOutput;
135
+ export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateBrowserProfileCommandOutput | CreateCodeInterpreterCommandOutput | CreateConfigurationBundleCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayRuleCommandOutput | CreateGatewayTargetCommandOutput | CreateHarnessCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateRegistryCommandOutput | CreateRegistryRecordCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteBrowserProfileCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteConfigurationBundleCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayRuleCommandOutput | DeleteGatewayTargetCommandOutput | DeleteHarnessCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteRegistryCommandOutput | DeleteRegistryRecordCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetBrowserProfileCommandOutput | GetCodeInterpreterCommandOutput | GetConfigurationBundleCommandOutput | GetConfigurationBundleVersionCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayRuleCommandOutput | GetGatewayTargetCommandOutput | GetHarnessCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetRegistryCommandOutput | GetRegistryRecordCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowserProfilesCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListConfigurationBundleVersionsCommandOutput | ListConfigurationBundlesCommandOutput | ListEvaluatorsCommandOutput | ListGatewayRulesCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListHarnessesCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListRegistriesCommandOutput | ListRegistryRecordsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SubmitRegistryRecordForApprovalCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateConfigurationBundleCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayRuleCommandOutput | UpdateGatewayTargetCommandOutput | UpdateHarnessCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateRegistryCommandOutput | UpdateRegistryRecordCommandOutput | UpdateRegistryRecordStatusCommandOutput | UpdateWorkloadIdentityCommandOutput;
124
136
  /**
125
137
  * @public
126
138
  */
@@ -0,0 +1,111 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { CreateConfigurationBundleRequest, CreateConfigurationBundleResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateConfigurationBundleCommand}.
14
+ */
15
+ export interface CreateConfigurationBundleCommandInput extends CreateConfigurationBundleRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateConfigurationBundleCommand}.
21
+ */
22
+ export interface CreateConfigurationBundleCommandOutput extends CreateConfigurationBundleResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateConfigurationBundleCommand_base: {
25
+ new (input: CreateConfigurationBundleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfigurationBundleCommandInput, CreateConfigurationBundleCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateConfigurationBundleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfigurationBundleCommandInput, CreateConfigurationBundleCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a new configuration bundle resource. A configuration bundle stores versioned component configurations for agent evaluation workflows.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, CreateConfigurationBundleCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, CreateConfigurationBundleCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // CreateConfigurationBundleRequest
40
+ * clientToken: "STRING_VALUE",
41
+ * bundleName: "STRING_VALUE", // required
42
+ * description: "STRING_VALUE",
43
+ * components: { // ComponentConfigurationMap // required
44
+ * "<keys>": { // ComponentConfiguration
45
+ * configuration: "DOCUMENT_VALUE", // required
46
+ * },
47
+ * },
48
+ * branchName: "STRING_VALUE",
49
+ * commitMessage: "STRING_VALUE",
50
+ * createdBy: { // VersionCreatedBySource
51
+ * name: "STRING_VALUE", // required
52
+ * arn: "STRING_VALUE",
53
+ * },
54
+ * tags: { // TagsMap
55
+ * "<keys>": "STRING_VALUE",
56
+ * },
57
+ * };
58
+ * const command = new CreateConfigurationBundleCommand(input);
59
+ * const response = await client.send(command);
60
+ * // { // CreateConfigurationBundleResponse
61
+ * // bundleArn: "STRING_VALUE", // required
62
+ * // bundleId: "STRING_VALUE", // required
63
+ * // versionId: "STRING_VALUE", // required
64
+ * // createdAt: new Date("TIMESTAMP"), // required
65
+ * // };
66
+ *
67
+ * ```
68
+ *
69
+ * @param CreateConfigurationBundleCommandInput - {@link CreateConfigurationBundleCommandInput}
70
+ * @returns {@link CreateConfigurationBundleCommandOutput}
71
+ * @see {@link CreateConfigurationBundleCommandInput} for command's `input` shape.
72
+ * @see {@link CreateConfigurationBundleCommandOutput} for command's `response` shape.
73
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
74
+ *
75
+ * @throws {@link AccessDeniedException} (client fault)
76
+ * <p>This exception is thrown when a request is denied per access permissions</p>
77
+ *
78
+ * @throws {@link ConflictException} (client fault)
79
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
80
+ *
81
+ * @throws {@link InternalServerException} (server fault)
82
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
83
+ *
84
+ * @throws {@link ServiceQuotaExceededException} (client fault)
85
+ * <p>This exception is thrown when a request is made beyond the service quota</p>
86
+ *
87
+ * @throws {@link ThrottlingException} (client fault)
88
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
89
+ *
90
+ * @throws {@link ValidationException} (client fault)
91
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
92
+ *
93
+ * @throws {@link BedrockAgentCoreControlServiceException}
94
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
95
+ *
96
+ *
97
+ * @public
98
+ */
99
+ export declare class CreateConfigurationBundleCommand extends CreateConfigurationBundleCommand_base {
100
+ /** @internal type navigation helper, not in runtime. */
101
+ protected static __types: {
102
+ api: {
103
+ input: CreateConfigurationBundleRequest;
104
+ output: CreateConfigurationBundleResponse;
105
+ };
106
+ sdk: {
107
+ input: CreateConfigurationBundleCommandInput;
108
+ output: CreateConfigurationBundleCommandOutput;
109
+ };
110
+ };
111
+ }
@@ -81,6 +81,7 @@ declare const CreateEvaluatorCommand_base: {
81
81
  * },
82
82
  * },
83
83
  * level: "TOOL_CALL" || "TRACE" || "SESSION", // required
84
+ * kmsKeyArn: "STRING_VALUE",
84
85
  * tags: { // TagsMap
85
86
  * "<keys>": "STRING_VALUE",
86
87
  * },
@@ -41,7 +41,7 @@ declare const CreateGatewayCommand_base: {
41
41
  * description: "STRING_VALUE",
42
42
  * clientToken: "STRING_VALUE",
43
43
  * roleArn: "STRING_VALUE", // required
44
- * protocolType: "MCP", // required
44
+ * protocolType: "MCP",
45
45
  * protocolConfiguration: { // GatewayProtocolConfiguration Union: only one key present
46
46
  * mcp: { // MCPGatewayConfiguration
47
47
  * supportedVersions: [ // McpSupportedVersions
@@ -51,7 +51,7 @@ declare const CreateGatewayCommand_base: {
51
51
  * searchType: "SEMANTIC",
52
52
  * },
53
53
  * },
54
- * authorizerType: "CUSTOM_JWT" || "AWS_IAM" || "NONE", // required
54
+ * authorizerType: "CUSTOM_JWT" || "AWS_IAM" || "NONE" || "AUTHENTICATE_ONLY", // required
55
55
  * authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
56
56
  * customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
57
57
  * discoveryUrl: "STRING_VALUE", // required
@@ -162,7 +162,7 @@ declare const CreateGatewayCommand_base: {
162
162
  * // name: "STRING_VALUE", // required
163
163
  * // description: "STRING_VALUE",
164
164
  * // roleArn: "STRING_VALUE",
165
- * // protocolType: "MCP", // required
165
+ * // protocolType: "MCP",
166
166
  * // protocolConfiguration: { // GatewayProtocolConfiguration Union: only one key present
167
167
  * // mcp: { // MCPGatewayConfiguration
168
168
  * // supportedVersions: [ // McpSupportedVersions
@@ -172,7 +172,7 @@ declare const CreateGatewayCommand_base: {
172
172
  * // searchType: "SEMANTIC",
173
173
  * // },
174
174
  * // },
175
- * // authorizerType: "CUSTOM_JWT" || "AWS_IAM" || "NONE", // required
175
+ * // authorizerType: "CUSTOM_JWT" || "AWS_IAM" || "NONE" || "AUTHENTICATE_ONLY", // required
176
176
  * // authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
177
177
  * // customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
178
178
  * // discoveryUrl: "STRING_VALUE", // required