@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
@@ -103,8 +103,8 @@ declare const UpdateGatewayTargetCommand_base: {
103
103
  * },
104
104
  * inlinePayload: "STRING_VALUE",
105
105
  * },
106
- * resourcePriority: Number("int"),
107
106
  * listingMode: "DEFAULT" || "DYNAMIC",
107
+ * resourcePriority: Number("int"),
108
108
  * },
109
109
  * apiGateway: { // ApiGatewayTargetConfiguration
110
110
  * restApiId: "STRING_VALUE", // required
@@ -129,10 +129,16 @@ declare const UpdateGatewayTargetCommand_base: {
129
129
  * },
130
130
  * },
131
131
  * },
132
+ * http: { // HttpTargetConfiguration Union: only one key present
133
+ * agentcoreRuntime: { // RuntimeTargetConfiguration
134
+ * arn: "STRING_VALUE", // required
135
+ * qualifier: "STRING_VALUE",
136
+ * },
137
+ * },
132
138
  * },
133
139
  * credentialProviderConfigurations: [ // CredentialProviderConfigurations
134
140
  * { // CredentialProviderConfiguration
135
- * credentialProviderType: "GATEWAY_IAM_ROLE" || "OAUTH" || "API_KEY", // required
141
+ * credentialProviderType: "GATEWAY_IAM_ROLE" || "OAUTH" || "API_KEY" || "CALLER_IAM_CREDENTIALS" || "JWT_PASSTHROUGH", // required
136
142
  * credentialProvider: { // CredentialProvider Union: only one key present
137
143
  * oauthCredentialProvider: { // OAuthCredentialProvider
138
144
  * providerArn: "STRING_VALUE", // required
@@ -264,8 +270,8 @@ declare const UpdateGatewayTargetCommand_base: {
264
270
  * // },
265
271
  * // inlinePayload: "STRING_VALUE",
266
272
  * // },
267
- * // resourcePriority: Number("int"),
268
273
  * // listingMode: "DEFAULT" || "DYNAMIC",
274
+ * // resourcePriority: Number("int"),
269
275
  * // },
270
276
  * // apiGateway: { // ApiGatewayTargetConfiguration
271
277
  * // restApiId: "STRING_VALUE", // required
@@ -290,10 +296,16 @@ declare const UpdateGatewayTargetCommand_base: {
290
296
  * // },
291
297
  * // },
292
298
  * // },
299
+ * // http: { // HttpTargetConfiguration Union: only one key present
300
+ * // agentcoreRuntime: { // RuntimeTargetConfiguration
301
+ * // arn: "STRING_VALUE", // required
302
+ * // qualifier: "STRING_VALUE",
303
+ * // },
304
+ * // },
293
305
  * // },
294
306
  * // credentialProviderConfigurations: [ // CredentialProviderConfigurations // required
295
307
  * // { // CredentialProviderConfiguration
296
- * // credentialProviderType: "GATEWAY_IAM_ROLE" || "OAUTH" || "API_KEY", // required
308
+ * // credentialProviderType: "GATEWAY_IAM_ROLE" || "OAUTH" || "API_KEY" || "CALLER_IAM_CREDENTIALS" || "JWT_PASSTHROUGH", // required
297
309
  * // credentialProvider: { // CredentialProvider Union: only one key present
298
310
  * // oauthCredentialProvider: { // OAuthCredentialProvider
299
311
  * // providerArn: "STRING_VALUE", // required
@@ -363,6 +375,7 @@ declare const UpdateGatewayTargetCommand_base: {
363
375
  * // userId: "STRING_VALUE",
364
376
  * // },
365
377
  * // },
378
+ * // protocolType: "MCP" || "HTTP",
366
379
  * // };
367
380
  *
368
381
  * ```
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
- import type { UpdateMemoryInput, UpdateMemoryOutput } from "../models/models_0";
4
+ import type { UpdateMemoryInput, UpdateMemoryOutput } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -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";
@@ -219,6 +219,23 @@ export declare const CodeInterpreterStatus: {
219
219
  * @public
220
220
  */
221
221
  export type CodeInterpreterStatus = (typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
222
+ /**
223
+ * @public
224
+ * @enum
225
+ */
226
+ export declare const ConfigurationBundleStatus: {
227
+ readonly ACTIVE: "ACTIVE";
228
+ readonly CREATE_FAILED: "CREATE_FAILED";
229
+ readonly CREATING: "CREATING";
230
+ readonly DELETE_FAILED: "DELETE_FAILED";
231
+ readonly DELETING: "DELETING";
232
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
233
+ readonly UPDATING: "UPDATING";
234
+ };
235
+ /**
236
+ * @public
237
+ */
238
+ export type ConfigurationBundleStatus = (typeof ConfigurationBundleStatus)[keyof typeof ConfigurationBundleStatus];
222
239
  /**
223
240
  * @public
224
241
  * @enum
@@ -248,6 +265,18 @@ export declare const EvaluatorStatus: {
248
265
  * @public
249
266
  */
250
267
  export type EvaluatorStatus = (typeof EvaluatorStatus)[keyof typeof EvaluatorStatus];
268
+ /**
269
+ * @public
270
+ * @enum
271
+ */
272
+ export declare const IncludedData: {
273
+ readonly ALL_DATA: "ALL_DATA";
274
+ readonly METADATA_ONLY: "METADATA_ONLY";
275
+ };
276
+ /**
277
+ * @public
278
+ */
279
+ export type IncludedData = (typeof IncludedData)[keyof typeof IncludedData];
251
280
  /**
252
281
  * @public
253
282
  * @enum
@@ -266,6 +295,7 @@ export type EvaluatorType = (typeof EvaluatorType)[keyof typeof EvaluatorType];
266
295
  * @enum
267
296
  */
268
297
  export declare const AuthorizerType: {
298
+ readonly AUTHENTICATE_ONLY: "AUTHENTICATE_ONLY";
269
299
  readonly AWS_IAM: "AWS_IAM";
270
300
  readonly CUSTOM_JWT: "CUSTOM_JWT";
271
301
  readonly NONE: "NONE";
@@ -347,6 +377,32 @@ export declare const GatewayStatus: {
347
377
  * @public
348
378
  */
349
379
  export type GatewayStatus = (typeof GatewayStatus)[keyof typeof GatewayStatus];
380
+ /**
381
+ * @public
382
+ * @enum
383
+ */
384
+ export declare const PrincipalMatchOperator: {
385
+ readonly StringEquals: "StringEquals";
386
+ readonly StringLike: "StringLike";
387
+ };
388
+ /**
389
+ * @public
390
+ */
391
+ export type PrincipalMatchOperator = (typeof PrincipalMatchOperator)[keyof typeof PrincipalMatchOperator];
392
+ /**
393
+ * @public
394
+ * @enum
395
+ */
396
+ export declare const GatewayRuleStatus: {
397
+ readonly ACTIVE: "ACTIVE";
398
+ readonly CREATING: "CREATING";
399
+ readonly DELETING: "DELETING";
400
+ readonly UPDATING: "UPDATING";
401
+ };
402
+ /**
403
+ * @public
404
+ */
405
+ export type GatewayRuleStatus = (typeof GatewayRuleStatus)[keyof typeof GatewayRuleStatus];
350
406
  /**
351
407
  * @public
352
408
  * @enum
@@ -377,7 +433,9 @@ export type OAuthGrantType = (typeof OAuthGrantType)[keyof typeof OAuthGrantType
377
433
  */
378
434
  export declare const CredentialProviderType: {
379
435
  readonly API_KEY: "API_KEY";
436
+ readonly CALLER_IAM_CREDENTIALS: "CALLER_IAM_CREDENTIALS";
380
437
  readonly GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE";
438
+ readonly JWT_PASSTHROUGH: "JWT_PASSTHROUGH";
381
439
  readonly OAUTH: "OAUTH";
382
440
  };
383
441
  /**
@@ -429,6 +487,18 @@ export declare const ListingMode: {
429
487
  * @public
430
488
  */
431
489
  export type ListingMode = (typeof ListingMode)[keyof typeof ListingMode];
490
+ /**
491
+ * @public
492
+ * @enum
493
+ */
494
+ export declare const TargetProtocolType: {
495
+ readonly HTTP: "HTTP";
496
+ readonly MCP: "MCP";
497
+ };
498
+ /**
499
+ * @public
500
+ */
501
+ export type TargetProtocolType = (typeof TargetProtocolType)[keyof typeof TargetProtocolType];
432
502
  /**
433
503
  * @public
434
504
  * @enum