@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
@@ -6,8 +6,10 @@ import { CreateApiKeyCredentialProviderCommand, } from "./commands/CreateApiKeyC
6
6
  import { CreateBrowserCommand, } from "./commands/CreateBrowserCommand";
7
7
  import { CreateBrowserProfileCommand, } from "./commands/CreateBrowserProfileCommand";
8
8
  import { CreateCodeInterpreterCommand, } from "./commands/CreateCodeInterpreterCommand";
9
+ import { CreateConfigurationBundleCommand, } from "./commands/CreateConfigurationBundleCommand";
9
10
  import { CreateEvaluatorCommand, } from "./commands/CreateEvaluatorCommand";
10
11
  import { CreateGatewayCommand, } from "./commands/CreateGatewayCommand";
12
+ import { CreateGatewayRuleCommand, } from "./commands/CreateGatewayRuleCommand";
11
13
  import { CreateGatewayTargetCommand, } from "./commands/CreateGatewayTargetCommand";
12
14
  import { CreateHarnessCommand, } from "./commands/CreateHarnessCommand";
13
15
  import { CreateMemoryCommand, } from "./commands/CreateMemoryCommand";
@@ -24,8 +26,10 @@ import { DeleteApiKeyCredentialProviderCommand, } from "./commands/DeleteApiKeyC
24
26
  import { DeleteBrowserCommand, } from "./commands/DeleteBrowserCommand";
25
27
  import { DeleteBrowserProfileCommand, } from "./commands/DeleteBrowserProfileCommand";
26
28
  import { DeleteCodeInterpreterCommand, } from "./commands/DeleteCodeInterpreterCommand";
29
+ import { DeleteConfigurationBundleCommand, } from "./commands/DeleteConfigurationBundleCommand";
27
30
  import { DeleteEvaluatorCommand, } from "./commands/DeleteEvaluatorCommand";
28
31
  import { DeleteGatewayCommand, } from "./commands/DeleteGatewayCommand";
32
+ import { DeleteGatewayRuleCommand, } from "./commands/DeleteGatewayRuleCommand";
29
33
  import { DeleteGatewayTargetCommand, } from "./commands/DeleteGatewayTargetCommand";
30
34
  import { DeleteHarnessCommand, } from "./commands/DeleteHarnessCommand";
31
35
  import { DeleteMemoryCommand, } from "./commands/DeleteMemoryCommand";
@@ -43,8 +47,11 @@ import { GetApiKeyCredentialProviderCommand, } from "./commands/GetApiKeyCredent
43
47
  import { GetBrowserCommand, } from "./commands/GetBrowserCommand";
44
48
  import { GetBrowserProfileCommand, } from "./commands/GetBrowserProfileCommand";
45
49
  import { GetCodeInterpreterCommand, } from "./commands/GetCodeInterpreterCommand";
50
+ import { GetConfigurationBundleCommand, } from "./commands/GetConfigurationBundleCommand";
51
+ import { GetConfigurationBundleVersionCommand, } from "./commands/GetConfigurationBundleVersionCommand";
46
52
  import { GetEvaluatorCommand, } from "./commands/GetEvaluatorCommand";
47
53
  import { GetGatewayCommand, } from "./commands/GetGatewayCommand";
54
+ import { GetGatewayRuleCommand, } from "./commands/GetGatewayRuleCommand";
48
55
  import { GetGatewayTargetCommand, } from "./commands/GetGatewayTargetCommand";
49
56
  import { GetHarnessCommand, } from "./commands/GetHarnessCommand";
50
57
  import { GetMemoryCommand } from "./commands/GetMemoryCommand";
@@ -65,7 +72,10 @@ import { ListApiKeyCredentialProvidersCommand, } from "./commands/ListApiKeyCred
65
72
  import { ListBrowserProfilesCommand, } from "./commands/ListBrowserProfilesCommand";
66
73
  import { ListBrowsersCommand, } from "./commands/ListBrowsersCommand";
67
74
  import { ListCodeInterpretersCommand, } from "./commands/ListCodeInterpretersCommand";
75
+ import { ListConfigurationBundlesCommand, } from "./commands/ListConfigurationBundlesCommand";
76
+ import { ListConfigurationBundleVersionsCommand, } from "./commands/ListConfigurationBundleVersionsCommand";
68
77
  import { ListEvaluatorsCommand, } from "./commands/ListEvaluatorsCommand";
78
+ import { ListGatewayRulesCommand, } from "./commands/ListGatewayRulesCommand";
69
79
  import { ListGatewaysCommand, } from "./commands/ListGatewaysCommand";
70
80
  import { ListGatewayTargetsCommand, } from "./commands/ListGatewayTargetsCommand";
71
81
  import { ListHarnessesCommand, } from "./commands/ListHarnessesCommand";
@@ -90,8 +100,10 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
90
100
  import { UpdateAgentRuntimeCommand, } from "./commands/UpdateAgentRuntimeCommand";
91
101
  import { UpdateAgentRuntimeEndpointCommand, } from "./commands/UpdateAgentRuntimeEndpointCommand";
92
102
  import { UpdateApiKeyCredentialProviderCommand, } from "./commands/UpdateApiKeyCredentialProviderCommand";
103
+ import { UpdateConfigurationBundleCommand, } from "./commands/UpdateConfigurationBundleCommand";
93
104
  import { UpdateEvaluatorCommand, } from "./commands/UpdateEvaluatorCommand";
94
105
  import { UpdateGatewayCommand, } from "./commands/UpdateGatewayCommand";
106
+ import { UpdateGatewayRuleCommand, } from "./commands/UpdateGatewayRuleCommand";
95
107
  import { UpdateGatewayTargetCommand, } from "./commands/UpdateGatewayTargetCommand";
96
108
  import { UpdateHarnessCommand, } from "./commands/UpdateHarnessCommand";
97
109
  import { UpdateMemoryCommand, } from "./commands/UpdateMemoryCommand";
@@ -110,7 +122,10 @@ import { paginateListApiKeyCredentialProviders } from "./pagination/ListApiKeyCr
110
122
  import { paginateListBrowserProfiles } from "./pagination/ListBrowserProfilesPaginator";
111
123
  import { paginateListBrowsers } from "./pagination/ListBrowsersPaginator";
112
124
  import { paginateListCodeInterpreters } from "./pagination/ListCodeInterpretersPaginator";
125
+ import { paginateListConfigurationBundles } from "./pagination/ListConfigurationBundlesPaginator";
126
+ import { paginateListConfigurationBundleVersions } from "./pagination/ListConfigurationBundleVersionsPaginator";
113
127
  import { paginateListEvaluators } from "./pagination/ListEvaluatorsPaginator";
128
+ import { paginateListGatewayRules } from "./pagination/ListGatewayRulesPaginator";
114
129
  import { paginateListGateways } from "./pagination/ListGatewaysPaginator";
115
130
  import { paginateListGatewayTargets } from "./pagination/ListGatewayTargetsPaginator";
116
131
  import { paginateListHarnesses } from "./pagination/ListHarnessesPaginator";
@@ -137,8 +152,10 @@ const commands = {
137
152
  CreateBrowserCommand,
138
153
  CreateBrowserProfileCommand,
139
154
  CreateCodeInterpreterCommand,
155
+ CreateConfigurationBundleCommand,
140
156
  CreateEvaluatorCommand,
141
157
  CreateGatewayCommand,
158
+ CreateGatewayRuleCommand,
142
159
  CreateGatewayTargetCommand,
143
160
  CreateHarnessCommand,
144
161
  CreateMemoryCommand,
@@ -155,8 +172,10 @@ const commands = {
155
172
  DeleteBrowserCommand,
156
173
  DeleteBrowserProfileCommand,
157
174
  DeleteCodeInterpreterCommand,
175
+ DeleteConfigurationBundleCommand,
158
176
  DeleteEvaluatorCommand,
159
177
  DeleteGatewayCommand,
178
+ DeleteGatewayRuleCommand,
160
179
  DeleteGatewayTargetCommand,
161
180
  DeleteHarnessCommand,
162
181
  DeleteMemoryCommand,
@@ -174,8 +193,11 @@ const commands = {
174
193
  GetBrowserCommand,
175
194
  GetBrowserProfileCommand,
176
195
  GetCodeInterpreterCommand,
196
+ GetConfigurationBundleCommand,
197
+ GetConfigurationBundleVersionCommand,
177
198
  GetEvaluatorCommand,
178
199
  GetGatewayCommand,
200
+ GetGatewayRuleCommand,
179
201
  GetGatewayTargetCommand,
180
202
  GetHarnessCommand,
181
203
  GetMemoryCommand,
@@ -196,7 +218,10 @@ const commands = {
196
218
  ListBrowserProfilesCommand,
197
219
  ListBrowsersCommand,
198
220
  ListCodeInterpretersCommand,
221
+ ListConfigurationBundlesCommand,
222
+ ListConfigurationBundleVersionsCommand,
199
223
  ListEvaluatorsCommand,
224
+ ListGatewayRulesCommand,
200
225
  ListGatewaysCommand,
201
226
  ListGatewayTargetsCommand,
202
227
  ListHarnessesCommand,
@@ -221,8 +246,10 @@ const commands = {
221
246
  UpdateAgentRuntimeCommand,
222
247
  UpdateAgentRuntimeEndpointCommand,
223
248
  UpdateApiKeyCredentialProviderCommand,
249
+ UpdateConfigurationBundleCommand,
224
250
  UpdateEvaluatorCommand,
225
251
  UpdateGatewayCommand,
252
+ UpdateGatewayRuleCommand,
226
253
  UpdateGatewayTargetCommand,
227
254
  UpdateHarnessCommand,
228
255
  UpdateMemoryCommand,
@@ -243,7 +270,10 @@ const paginators = {
243
270
  paginateListBrowserProfiles,
244
271
  paginateListBrowsers,
245
272
  paginateListCodeInterpreters,
273
+ paginateListConfigurationBundles,
274
+ paginateListConfigurationBundleVersions,
246
275
  paginateListEvaluators,
276
+ paginateListGatewayRules,
247
277
  paginateListGateways,
248
278
  paginateListGatewayTargets,
249
279
  paginateListHarnesses,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateConfigurationBundle$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateConfigurationBundleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "CreateConfigurationBundle", {})
13
+ .n("BedrockAgentCoreControlClient", "CreateConfigurationBundleCommand")
14
+ .sc(CreateConfigurationBundle$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateGatewayRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateGatewayRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "CreateGatewayRule", {})
13
+ .n("BedrockAgentCoreControlClient", "CreateGatewayRuleCommand")
14
+ .sc(CreateGatewayRule$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteConfigurationBundle$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteConfigurationBundleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "DeleteConfigurationBundle", {})
13
+ .n("BedrockAgentCoreControlClient", "DeleteConfigurationBundleCommand")
14
+ .sc(DeleteConfigurationBundle$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteGatewayRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteGatewayRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "DeleteGatewayRule", {})
13
+ .n("BedrockAgentCoreControlClient", "DeleteGatewayRuleCommand")
14
+ .sc(DeleteGatewayRule$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetConfigurationBundle$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetConfigurationBundleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "GetConfigurationBundle", {})
13
+ .n("BedrockAgentCoreControlClient", "GetConfigurationBundleCommand")
14
+ .sc(GetConfigurationBundle$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetConfigurationBundleVersion$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetConfigurationBundleVersionCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "GetConfigurationBundleVersion", {})
13
+ .n("BedrockAgentCoreControlClient", "GetConfigurationBundleVersionCommand")
14
+ .sc(GetConfigurationBundleVersion$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetGatewayRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetGatewayRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "GetGatewayRule", {})
13
+ .n("BedrockAgentCoreControlClient", "GetGatewayRuleCommand")
14
+ .sc(GetGatewayRule$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListConfigurationBundleVersions$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListConfigurationBundleVersionsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "ListConfigurationBundleVersions", {})
13
+ .n("BedrockAgentCoreControlClient", "ListConfigurationBundleVersionsCommand")
14
+ .sc(ListConfigurationBundleVersions$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListConfigurationBundles$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListConfigurationBundlesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "ListConfigurationBundles", {})
13
+ .n("BedrockAgentCoreControlClient", "ListConfigurationBundlesCommand")
14
+ .sc(ListConfigurationBundles$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListGatewayRules$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListGatewayRulesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "ListGatewayRules", {})
13
+ .n("BedrockAgentCoreControlClient", "ListGatewayRulesCommand")
14
+ .sc(ListGatewayRules$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateConfigurationBundle$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateConfigurationBundleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "UpdateConfigurationBundle", {})
13
+ .n("BedrockAgentCoreControlClient", "UpdateConfigurationBundleCommand")
14
+ .sc(UpdateConfigurationBundle$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateGatewayRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateGatewayRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonBedrockAgentCoreControl", "UpdateGatewayRule", {})
13
+ .n("BedrockAgentCoreControlClient", "UpdateGatewayRuleCommand")
14
+ .sc(UpdateGatewayRule$)
15
+ .build() {
16
+ }
@@ -4,8 +4,10 @@ export * from "./CreateApiKeyCredentialProviderCommand";
4
4
  export * from "./CreateBrowserCommand";
5
5
  export * from "./CreateBrowserProfileCommand";
6
6
  export * from "./CreateCodeInterpreterCommand";
7
+ export * from "./CreateConfigurationBundleCommand";
7
8
  export * from "./CreateEvaluatorCommand";
8
9
  export * from "./CreateGatewayCommand";
10
+ export * from "./CreateGatewayRuleCommand";
9
11
  export * from "./CreateGatewayTargetCommand";
10
12
  export * from "./CreateHarnessCommand";
11
13
  export * from "./CreateMemoryCommand";
@@ -22,8 +24,10 @@ export * from "./DeleteApiKeyCredentialProviderCommand";
22
24
  export * from "./DeleteBrowserCommand";
23
25
  export * from "./DeleteBrowserProfileCommand";
24
26
  export * from "./DeleteCodeInterpreterCommand";
27
+ export * from "./DeleteConfigurationBundleCommand";
25
28
  export * from "./DeleteEvaluatorCommand";
26
29
  export * from "./DeleteGatewayCommand";
30
+ export * from "./DeleteGatewayRuleCommand";
27
31
  export * from "./DeleteGatewayTargetCommand";
28
32
  export * from "./DeleteHarnessCommand";
29
33
  export * from "./DeleteMemoryCommand";
@@ -41,8 +45,11 @@ export * from "./GetApiKeyCredentialProviderCommand";
41
45
  export * from "./GetBrowserCommand";
42
46
  export * from "./GetBrowserProfileCommand";
43
47
  export * from "./GetCodeInterpreterCommand";
48
+ export * from "./GetConfigurationBundleCommand";
49
+ export * from "./GetConfigurationBundleVersionCommand";
44
50
  export * from "./GetEvaluatorCommand";
45
51
  export * from "./GetGatewayCommand";
52
+ export * from "./GetGatewayRuleCommand";
46
53
  export * from "./GetGatewayTargetCommand";
47
54
  export * from "./GetHarnessCommand";
48
55
  export * from "./GetMemoryCommand";
@@ -63,7 +70,10 @@ export * from "./ListApiKeyCredentialProvidersCommand";
63
70
  export * from "./ListBrowserProfilesCommand";
64
71
  export * from "./ListBrowsersCommand";
65
72
  export * from "./ListCodeInterpretersCommand";
73
+ export * from "./ListConfigurationBundleVersionsCommand";
74
+ export * from "./ListConfigurationBundlesCommand";
66
75
  export * from "./ListEvaluatorsCommand";
76
+ export * from "./ListGatewayRulesCommand";
67
77
  export * from "./ListGatewayTargetsCommand";
68
78
  export * from "./ListGatewaysCommand";
69
79
  export * from "./ListHarnessesCommand";
@@ -88,8 +98,10 @@ export * from "./UntagResourceCommand";
88
98
  export * from "./UpdateAgentRuntimeCommand";
89
99
  export * from "./UpdateAgentRuntimeEndpointCommand";
90
100
  export * from "./UpdateApiKeyCredentialProviderCommand";
101
+ export * from "./UpdateConfigurationBundleCommand";
91
102
  export * from "./UpdateEvaluatorCommand";
92
103
  export * from "./UpdateGatewayCommand";
104
+ export * from "./UpdateGatewayRuleCommand";
93
105
  export * from "./UpdateGatewayTargetCommand";
94
106
  export * from "./UpdateHarnessCommand";
95
107
  export * from "./UpdateMemoryCommand";
@@ -91,6 +91,15 @@ export const CodeInterpreterStatus = {
91
91
  DELETING: "DELETING",
92
92
  READY: "READY",
93
93
  };
94
+ export const ConfigurationBundleStatus = {
95
+ ACTIVE: "ACTIVE",
96
+ CREATE_FAILED: "CREATE_FAILED",
97
+ CREATING: "CREATING",
98
+ DELETE_FAILED: "DELETE_FAILED",
99
+ DELETING: "DELETING",
100
+ UPDATE_FAILED: "UPDATE_FAILED",
101
+ UPDATING: "UPDATING",
102
+ };
94
103
  export const EvaluatorLevel = {
95
104
  SESSION: "SESSION",
96
105
  TOOL_CALL: "TOOL_CALL",
@@ -104,12 +113,17 @@ export const EvaluatorStatus = {
104
113
  UPDATE_FAILED: "UPDATE_FAILED",
105
114
  UPDATING: "UPDATING",
106
115
  };
116
+ export const IncludedData = {
117
+ ALL_DATA: "ALL_DATA",
118
+ METADATA_ONLY: "METADATA_ONLY",
119
+ };
107
120
  export const EvaluatorType = {
108
121
  BUILTIN: "Builtin",
109
122
  CODE: "CustomCode",
110
123
  CUSTOM: "Custom",
111
124
  };
112
125
  export const AuthorizerType = {
126
+ AUTHENTICATE_ONLY: "AUTHENTICATE_ONLY",
113
127
  AWS_IAM: "AWS_IAM",
114
128
  CUSTOM_JWT: "CUSTOM_JWT",
115
129
  NONE: "NONE",
@@ -139,6 +153,16 @@ export const GatewayStatus = {
139
153
  UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL",
140
154
  UPDATING: "UPDATING",
141
155
  };
156
+ export const PrincipalMatchOperator = {
157
+ StringEquals: "StringEquals",
158
+ StringLike: "StringLike",
159
+ };
160
+ export const GatewayRuleStatus = {
161
+ ACTIVE: "ACTIVE",
162
+ CREATING: "CREATING",
163
+ DELETING: "DELETING",
164
+ UPDATING: "UPDATING",
165
+ };
142
166
  export const ApiKeyCredentialLocation = {
143
167
  HEADER: "HEADER",
144
168
  QUERY_PARAMETER: "QUERY_PARAMETER",
@@ -149,7 +173,9 @@ export const OAuthGrantType = {
149
173
  };
150
174
  export const CredentialProviderType = {
151
175
  API_KEY: "API_KEY",
176
+ CALLER_IAM_CREDENTIALS: "CALLER_IAM_CREDENTIALS",
152
177
  GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE",
178
+ JWT_PASSTHROUGH: "JWT_PASSTHROUGH",
153
179
  OAUTH: "OAUTH",
154
180
  };
155
181
  export const RestApiMethod = {
@@ -173,6 +199,10 @@ export const ListingMode = {
173
199
  DEFAULT: "DEFAULT",
174
200
  DYNAMIC: "DYNAMIC",
175
201
  };
202
+ export const TargetProtocolType = {
203
+ HTTP: "HTTP",
204
+ MCP: "MCP",
205
+ };
176
206
  export const TargetStatus = {
177
207
  CREATE_PENDING_AUTH: "CREATE_PENDING_AUTH",
178
208
  CREATING: "CREATING",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
+ import { ListConfigurationBundleVersionsCommand, } from "../commands/ListConfigurationBundleVersionsCommand";
4
+ export const paginateListConfigurationBundleVersions = createPaginator(BedrockAgentCoreControlClient, ListConfigurationBundleVersionsCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
+ import { ListConfigurationBundlesCommand, } from "../commands/ListConfigurationBundlesCommand";
4
+ export const paginateListConfigurationBundles = createPaginator(BedrockAgentCoreControlClient, ListConfigurationBundlesCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
+ import { ListGatewayRulesCommand, } from "../commands/ListGatewayRulesCommand";
4
+ export const paginateListGatewayRules = createPaginator(BedrockAgentCoreControlClient, ListGatewayRulesCommand, "nextToken", "nextToken", "maxResults");
@@ -6,7 +6,10 @@ export * from "./ListApiKeyCredentialProvidersPaginator";
6
6
  export * from "./ListBrowserProfilesPaginator";
7
7
  export * from "./ListBrowsersPaginator";
8
8
  export * from "./ListCodeInterpretersPaginator";
9
+ export * from "./ListConfigurationBundlesPaginator";
10
+ export * from "./ListConfigurationBundleVersionsPaginator";
9
11
  export * from "./ListEvaluatorsPaginator";
12
+ export * from "./ListGatewayRulesPaginator";
10
13
  export * from "./ListGatewaysPaginator";
11
14
  export * from "./ListGatewayTargetsPaginator";
12
15
  export * from "./ListHarnessesPaginator";