@aws-sdk/client-bedrock-agentcore-control 3.1070.0 → 3.1072.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 (113) hide show
  1. package/README.md +42 -0
  2. package/dist-cjs/index.js +143 -1
  3. package/dist-cjs/schemas/schemas_0.js +475 -94
  4. package/dist-es/BedrockAgentCoreControl.js +16 -0
  5. package/dist-es/commands/CreateHarnessEndpointCommand.js +16 -0
  6. package/dist-es/commands/DeleteHarnessEndpointCommand.js +16 -0
  7. package/dist-es/commands/GetHarnessEndpointCommand.js +16 -0
  8. package/dist-es/commands/ListHarnessEndpointsCommand.js +16 -0
  9. package/dist-es/commands/ListHarnessVersionsCommand.js +16 -0
  10. package/dist-es/commands/UpdateHarnessEndpointCommand.js +16 -0
  11. package/dist-es/commands/index.js +6 -0
  12. package/dist-es/models/enums.js +43 -0
  13. package/dist-es/pagination/ListHarnessEndpointsPaginator.js +4 -0
  14. package/dist-es/pagination/ListHarnessVersionsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +2 -0
  16. package/dist-es/schemas/schemas_0.js +435 -94
  17. package/dist-types/BedrockAgentCoreControl.d.ts +56 -0
  18. package/dist-types/BedrockAgentCoreControlClient.d.ts +8 -2
  19. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +10 -0
  20. package/dist-types/commands/CreateGatewayCommand.d.ts +43 -0
  21. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +139 -1
  22. package/dist-types/commands/CreateHarnessCommand.d.ts +51 -2
  23. package/dist-types/commands/CreateHarnessEndpointCommand.d.ts +116 -0
  24. package/dist-types/commands/CreateMemoryCommand.d.ts +1 -0
  25. package/dist-types/commands/CreatePaymentManagerCommand.d.ts +20 -0
  26. package/dist-types/commands/CreatePolicyCommand.d.ts +8 -0
  27. package/dist-types/commands/CreateRegistryCommand.d.ts +11 -1
  28. package/dist-types/commands/DeleteHarnessCommand.d.ts +27 -1
  29. package/dist-types/commands/DeleteHarnessEndpointCommand.d.ts +108 -0
  30. package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
  31. package/dist-types/commands/DeleteRegistryCommand.d.ts +1 -1
  32. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +10 -0
  33. package/dist-types/commands/GetGatewayCommand.d.ts +26 -0
  34. package/dist-types/commands/GetGatewayTargetCommand.d.ts +69 -0
  35. package/dist-types/commands/GetHarnessCommand.d.ts +28 -2
  36. package/dist-types/commands/GetHarnessEndpointCommand.d.ts +104 -0
  37. package/dist-types/commands/GetMemoryCommand.d.ts +1 -0
  38. package/dist-types/commands/GetPaymentManagerCommand.d.ts +10 -0
  39. package/dist-types/commands/GetPolicyCommand.d.ts +4 -0
  40. package/dist-types/commands/GetPolicySummaryCommand.d.ts +1 -0
  41. package/dist-types/commands/GetRegistryCommand.d.ts +11 -1
  42. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +12 -0
  43. package/dist-types/commands/ListHarnessEndpointsCommand.d.ts +108 -0
  44. package/dist-types/commands/ListHarnessVersionsCommand.d.ts +105 -0
  45. package/dist-types/commands/ListHarnessesCommand.d.ts +3 -2
  46. package/dist-types/commands/ListMemoriesCommand.d.ts +1 -0
  47. package/dist-types/commands/ListPoliciesCommand.d.ts +4 -0
  48. package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +3 -0
  49. package/dist-types/commands/ListPolicySummariesCommand.d.ts +1 -0
  50. package/dist-types/commands/ListRegistriesCommand.d.ts +1 -1
  51. package/dist-types/commands/ListRegistryRecordsCommand.d.ts +2 -1
  52. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  53. package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
  54. package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +1 -1
  55. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +69 -0
  56. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  57. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  58. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +10 -0
  59. package/dist-types/commands/UpdateGatewayCommand.d.ts +51 -0
  60. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +139 -1
  61. package/dist-types/commands/UpdateHarnessCommand.d.ts +51 -2
  62. package/dist-types/commands/UpdateHarnessEndpointCommand.d.ts +113 -0
  63. package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -0
  64. package/dist-types/commands/UpdatePaymentManagerCommand.d.ts +10 -0
  65. package/dist-types/commands/UpdatePolicyCommand.d.ts +8 -0
  66. package/dist-types/commands/UpdateRegistryCommand.d.ts +21 -1
  67. package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +1 -1
  68. package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +1 -1
  69. package/dist-types/commands/index.d.ts +6 -0
  70. package/dist-types/models/enums.d.ts +99 -0
  71. package/dist-types/models/models_0.d.ts +904 -1144
  72. package/dist-types/models/models_1.d.ts +4595 -4209
  73. package/dist-types/models/models_2.d.ts +883 -6
  74. package/dist-types/pagination/ListHarnessEndpointsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListHarnessVersionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/index.d.ts +2 -0
  77. package/dist-types/schemas/schemas_0.d.ts +46 -0
  78. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +116 -0
  79. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +36 -0
  80. package/dist-types/ts3.4/commands/CreateHarnessCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/CreateHarnessEndpointCommand.d.ts +53 -0
  82. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/DeleteHarnessCommand.d.ts +1 -1
  84. package/dist-types/ts3.4/commands/DeleteHarnessEndpointCommand.d.ts +53 -0
  85. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +1 -1
  86. package/dist-types/ts3.4/commands/GetHarnessCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/GetHarnessEndpointCommand.d.ts +53 -0
  88. package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/ListHarnessEndpointsCommand.d.ts +53 -0
  90. package/dist-types/ts3.4/commands/ListHarnessVersionsCommand.d.ts +53 -0
  91. package/dist-types/ts3.4/commands/ListHarnessesCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +2 -4
  94. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
  96. package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  99. package/dist-types/ts3.4/commands/UpdateHarnessCommand.d.ts +1 -1
  100. package/dist-types/ts3.4/commands/UpdateHarnessEndpointCommand.d.ts +53 -0
  101. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
  102. package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +1 -1
  103. package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +1 -1
  104. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  105. package/dist-types/ts3.4/models/enums.d.ts +56 -0
  106. package/dist-types/ts3.4/models/models_0.d.ts +269 -402
  107. package/dist-types/ts3.4/models/models_1.d.ts +447 -211
  108. package/dist-types/ts3.4/models/models_2.d.ts +262 -3
  109. package/dist-types/ts3.4/pagination/ListHarnessEndpointsPaginator.d.ts +11 -0
  110. package/dist-types/ts3.4/pagination/ListHarnessVersionsPaginator.d.ts +11 -0
  111. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  112. package/dist-types/ts3.4/schemas/schemas_0.d.ts +46 -0
  113. package/package.json +3 -3
@@ -1,16 +1,247 @@
1
- import { SchemaType, TargetProtocolType, TargetStatus } from "./enums";
2
1
  import {
2
+ DescriptorType,
3
+ RegistryAuthorizerType,
4
+ RegistryRecordStatus,
5
+ RegistryStatus,
6
+ SchemaType,
7
+ SynchronizationType,
8
+ TargetProtocolType,
9
+ TargetStatus,
10
+ } from "./enums";
11
+ import {
12
+ A2aDescriptor,
3
13
  ApiGatewayTargetConfiguration,
4
14
  ApiSchemaConfiguration,
5
15
  AuthorizationData,
16
+ AuthorizerConfiguration,
17
+ ConnectorTargetConfiguration,
6
18
  CredentialProviderConfiguration,
7
19
  HttpTargetConfiguration,
20
+ InferenceTargetConfiguration,
21
+ KmsConfiguration,
8
22
  ManagedResourceDetails,
9
23
  McpServerTargetConfiguration,
10
24
  MetadataConfiguration,
11
25
  PrivateEndpoint,
12
26
  S3Configuration,
27
+ SkillDefinition,
28
+ SkillMdDefinition,
13
29
  } from "./models_0";
30
+ import {
31
+ CustomDescriptor,
32
+ Descriptors,
33
+ RegistryRecordSummary,
34
+ ServerDefinition,
35
+ SynchronizationConfiguration,
36
+ ToolsDefinition,
37
+ UpdatedAuthorizerConfiguration,
38
+ UpdatedDescription,
39
+ } from "./models_1";
40
+ export interface ListRegistryRecordsResponse {
41
+ registryRecords: RegistryRecordSummary[] | undefined;
42
+ nextToken?: string | undefined;
43
+ }
44
+ export interface SubmitRegistryRecordForApprovalRequest {
45
+ registryId: string | undefined;
46
+ recordId: string | undefined;
47
+ }
48
+ export interface SubmitRegistryRecordForApprovalResponse {
49
+ registryArn: string | undefined;
50
+ recordArn: string | undefined;
51
+ recordId: string | undefined;
52
+ status: RegistryRecordStatus | undefined;
53
+ updatedAt: Date | undefined;
54
+ }
55
+ export interface UpdatedA2aDescriptor {
56
+ optionalValue?: A2aDescriptor | undefined;
57
+ }
58
+ export interface UpdatedSkillDefinition {
59
+ optionalValue?: SkillDefinition | undefined;
60
+ }
61
+ export interface UpdatedSkillMdDefinition {
62
+ optionalValue?: SkillMdDefinition | undefined;
63
+ }
64
+ export interface UpdatedAgentSkillsDescriptorFields {
65
+ skillMd?: UpdatedSkillMdDefinition | undefined;
66
+ skillDefinition?: UpdatedSkillDefinition | undefined;
67
+ }
68
+ export interface UpdatedAgentSkillsDescriptor {
69
+ optionalValue?: UpdatedAgentSkillsDescriptorFields | undefined;
70
+ }
71
+ export interface UpdatedCustomDescriptor {
72
+ optionalValue?: CustomDescriptor | undefined;
73
+ }
74
+ export interface UpdatedServerDefinition {
75
+ optionalValue?: ServerDefinition | undefined;
76
+ }
77
+ export interface UpdatedToolsDefinition {
78
+ optionalValue?: ToolsDefinition | undefined;
79
+ }
80
+ export interface UpdatedMcpDescriptorFields {
81
+ server?: UpdatedServerDefinition | undefined;
82
+ tools?: UpdatedToolsDefinition | undefined;
83
+ }
84
+ export interface UpdatedMcpDescriptor {
85
+ optionalValue?: UpdatedMcpDescriptorFields | undefined;
86
+ }
87
+ export interface UpdatedDescriptorsUnion {
88
+ mcp?: UpdatedMcpDescriptor | undefined;
89
+ a2a?: UpdatedA2aDescriptor | undefined;
90
+ custom?: UpdatedCustomDescriptor | undefined;
91
+ agentSkills?: UpdatedAgentSkillsDescriptor | undefined;
92
+ }
93
+ export interface UpdatedDescriptors {
94
+ optionalValue?: UpdatedDescriptorsUnion | undefined;
95
+ }
96
+ export interface UpdatedSynchronizationConfiguration {
97
+ optionalValue?: SynchronizationConfiguration | undefined;
98
+ }
99
+ export interface UpdatedSynchronizationType {
100
+ optionalValue?: SynchronizationType | undefined;
101
+ }
102
+ export interface UpdateRegistryRecordRequest {
103
+ registryId: string | undefined;
104
+ recordId: string | undefined;
105
+ name?: string | undefined;
106
+ description?: UpdatedDescription | undefined;
107
+ descriptorType?: DescriptorType | undefined;
108
+ descriptors?: UpdatedDescriptors | undefined;
109
+ recordVersion?: string | undefined;
110
+ synchronizationType?: UpdatedSynchronizationType | undefined;
111
+ synchronizationConfiguration?:
112
+ | UpdatedSynchronizationConfiguration
113
+ | undefined;
114
+ triggerSynchronization?: boolean | undefined;
115
+ }
116
+ export interface UpdateRegistryRecordResponse {
117
+ registryArn: string | undefined;
118
+ recordArn: string | undefined;
119
+ recordId: string | undefined;
120
+ name: string | undefined;
121
+ description?: string | undefined;
122
+ descriptorType: DescriptorType | undefined;
123
+ descriptors: Descriptors | undefined;
124
+ recordVersion?: string | undefined;
125
+ status: RegistryRecordStatus | undefined;
126
+ createdAt: Date | undefined;
127
+ updatedAt: Date | undefined;
128
+ statusReason?: string | undefined;
129
+ synchronizationType?: SynchronizationType | undefined;
130
+ synchronizationConfiguration?: SynchronizationConfiguration | undefined;
131
+ }
132
+ export interface UpdateRegistryRecordStatusRequest {
133
+ registryId: string | undefined;
134
+ recordId: string | undefined;
135
+ status: RegistryRecordStatus | undefined;
136
+ statusReason: string | undefined;
137
+ }
138
+ export interface UpdateRegistryRecordStatusResponse {
139
+ registryArn: string | undefined;
140
+ recordArn: string | undefined;
141
+ recordId: string | undefined;
142
+ status: RegistryRecordStatus | undefined;
143
+ statusReason: string | undefined;
144
+ updatedAt: Date | undefined;
145
+ }
146
+ export interface ApprovalConfiguration {
147
+ autoApproval?: boolean | undefined;
148
+ }
149
+ export interface CreateRegistryRequest {
150
+ name: string | undefined;
151
+ description?: string | undefined;
152
+ authorizerType?: RegistryAuthorizerType | undefined;
153
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
154
+ clientToken?: string | undefined;
155
+ approvalConfiguration?: ApprovalConfiguration | undefined;
156
+ }
157
+ export interface CreateRegistryResponse {
158
+ registryArn: string | undefined;
159
+ }
160
+ export interface DeleteRegistryRequest {
161
+ registryId: string | undefined;
162
+ }
163
+ export interface DeleteRegistryResponse {
164
+ status: RegistryStatus | undefined;
165
+ }
166
+ export interface GetRegistryRequest {
167
+ registryId: string | undefined;
168
+ }
169
+ export interface GetRegistryResponse {
170
+ name: string | undefined;
171
+ description?: string | undefined;
172
+ registryId: string | undefined;
173
+ registryArn: string | undefined;
174
+ authorizerType?: RegistryAuthorizerType | undefined;
175
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
176
+ approvalConfiguration?: ApprovalConfiguration | undefined;
177
+ status: RegistryStatus | undefined;
178
+ statusReason?: string | undefined;
179
+ createdAt: Date | undefined;
180
+ updatedAt: Date | undefined;
181
+ }
182
+ export interface ListRegistriesRequest {
183
+ maxResults?: number | undefined;
184
+ nextToken?: string | undefined;
185
+ status?: RegistryStatus | undefined;
186
+ authorizerType?: RegistryAuthorizerType | undefined;
187
+ }
188
+ export interface RegistrySummary {
189
+ name: string | undefined;
190
+ description?: string | undefined;
191
+ registryId: string | undefined;
192
+ registryArn: string | undefined;
193
+ authorizerType?: RegistryAuthorizerType | undefined;
194
+ status: RegistryStatus | undefined;
195
+ statusReason?: string | undefined;
196
+ createdAt: Date | undefined;
197
+ updatedAt: Date | undefined;
198
+ }
199
+ export interface ListRegistriesResponse {
200
+ registries: RegistrySummary[] | undefined;
201
+ nextToken?: string | undefined;
202
+ }
203
+ export interface UpdatedApprovalConfiguration {
204
+ optionalValue?: ApprovalConfiguration | undefined;
205
+ }
206
+ export interface UpdateRegistryRequest {
207
+ registryId: string | undefined;
208
+ name?: string | undefined;
209
+ description?: UpdatedDescription | undefined;
210
+ authorizerConfiguration?: UpdatedAuthorizerConfiguration | undefined;
211
+ approvalConfiguration?: UpdatedApprovalConfiguration | undefined;
212
+ }
213
+ export interface UpdateRegistryResponse {
214
+ name: string | undefined;
215
+ description?: string | undefined;
216
+ registryId: string | undefined;
217
+ registryArn: string | undefined;
218
+ authorizerType?: RegistryAuthorizerType | undefined;
219
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
220
+ approvalConfiguration?: ApprovalConfiguration | undefined;
221
+ status: RegistryStatus | undefined;
222
+ statusReason?: string | undefined;
223
+ createdAt: Date | undefined;
224
+ updatedAt: Date | undefined;
225
+ }
226
+ export interface SetTokenVaultCMKRequest {
227
+ tokenVaultId?: string | undefined;
228
+ kmsConfiguration: KmsConfiguration | undefined;
229
+ }
230
+ export interface SetTokenVaultCMKResponse {
231
+ tokenVaultId: string | undefined;
232
+ kmsConfiguration: KmsConfiguration | undefined;
233
+ lastModifiedDate: Date | undefined;
234
+ }
235
+ export interface TagResourceRequest {
236
+ resourceArn: string | undefined;
237
+ tags: Record<string, string> | undefined;
238
+ }
239
+ export interface TagResourceResponse {}
240
+ export interface UntagResourceRequest {
241
+ resourceArn: string | undefined;
242
+ tagKeys: string[] | undefined;
243
+ }
244
+ export interface UntagResourceResponse {}
14
245
  export interface CreateWorkloadIdentityRequest {
15
246
  name: string | undefined;
16
247
  allowedResourceOauth2ReturnUrls?: string[] | undefined;
@@ -103,6 +334,7 @@ export interface McpLambdaTargetConfiguration {
103
334
  }
104
335
  export type McpTargetConfiguration =
105
336
  | McpTargetConfiguration.ApiGatewayMember
337
+ | McpTargetConfiguration.ConnectorMember
106
338
  | McpTargetConfiguration.LambdaMember
107
339
  | McpTargetConfiguration.McpServerMember
108
340
  | McpTargetConfiguration.OpenApiSchemaMember
@@ -115,6 +347,7 @@ export declare namespace McpTargetConfiguration {
115
347
  lambda?: never;
116
348
  mcpServer?: never;
117
349
  apiGateway?: never;
350
+ connector?: never;
118
351
  $unknown?: never;
119
352
  }
120
353
  interface SmithyModelMember {
@@ -123,6 +356,7 @@ export declare namespace McpTargetConfiguration {
123
356
  lambda?: never;
124
357
  mcpServer?: never;
125
358
  apiGateway?: never;
359
+ connector?: never;
126
360
  $unknown?: never;
127
361
  }
128
362
  interface LambdaMember {
@@ -131,6 +365,7 @@ export declare namespace McpTargetConfiguration {
131
365
  lambda: McpLambdaTargetConfiguration;
132
366
  mcpServer?: never;
133
367
  apiGateway?: never;
368
+ connector?: never;
134
369
  $unknown?: never;
135
370
  }
136
371
  interface McpServerMember {
@@ -139,6 +374,7 @@ export declare namespace McpTargetConfiguration {
139
374
  lambda?: never;
140
375
  mcpServer: McpServerTargetConfiguration;
141
376
  apiGateway?: never;
377
+ connector?: never;
142
378
  $unknown?: never;
143
379
  }
144
380
  interface ApiGatewayMember {
@@ -147,6 +383,16 @@ export declare namespace McpTargetConfiguration {
147
383
  lambda?: never;
148
384
  mcpServer?: never;
149
385
  apiGateway: ApiGatewayTargetConfiguration;
386
+ connector?: never;
387
+ $unknown?: never;
388
+ }
389
+ interface ConnectorMember {
390
+ openApiSchema?: never;
391
+ smithyModel?: never;
392
+ lambda?: never;
393
+ mcpServer?: never;
394
+ apiGateway?: never;
395
+ connector: ConnectorTargetConfiguration;
150
396
  $unknown?: never;
151
397
  }
152
398
  interface $UnknownMember {
@@ -155,6 +401,7 @@ export declare namespace McpTargetConfiguration {
155
401
  lambda?: never;
156
402
  mcpServer?: never;
157
403
  apiGateway?: never;
404
+ connector?: never;
158
405
  $unknown: [string, any];
159
406
  }
160
407
  interface Visitor<T> {
@@ -163,38 +410,50 @@ export declare namespace McpTargetConfiguration {
163
410
  lambda: (value: McpLambdaTargetConfiguration) => T;
164
411
  mcpServer: (value: McpServerTargetConfiguration) => T;
165
412
  apiGateway: (value: ApiGatewayTargetConfiguration) => T;
413
+ connector: (value: ConnectorTargetConfiguration) => T;
166
414
  _: (name: string, value: any) => T;
167
415
  }
168
416
  }
169
417
  export type TargetConfiguration =
170
418
  | TargetConfiguration.HttpMember
419
+ | TargetConfiguration.InferenceMember
171
420
  | TargetConfiguration.McpMember
172
421
  | TargetConfiguration.$UnknownMember;
173
422
  export declare namespace TargetConfiguration {
174
423
  interface McpMember {
175
424
  mcp: McpTargetConfiguration;
176
425
  http?: never;
426
+ inference?: never;
177
427
  $unknown?: never;
178
428
  }
179
429
  interface HttpMember {
180
430
  mcp?: never;
181
431
  http: HttpTargetConfiguration;
432
+ inference?: never;
433
+ $unknown?: never;
434
+ }
435
+ interface InferenceMember {
436
+ mcp?: never;
437
+ http?: never;
438
+ inference: InferenceTargetConfiguration;
182
439
  $unknown?: never;
183
440
  }
184
441
  interface $UnknownMember {
185
442
  mcp?: never;
186
443
  http?: never;
444
+ inference?: never;
187
445
  $unknown: [string, any];
188
446
  }
189
447
  interface Visitor<T> {
190
448
  mcp: (value: McpTargetConfiguration) => T;
191
449
  http: (value: HttpTargetConfiguration) => T;
450
+ inference: (value: InferenceTargetConfiguration) => T;
192
451
  _: (name: string, value: any) => T;
193
452
  }
194
453
  }
195
454
  export interface CreateGatewayTargetRequest {
196
455
  gatewayIdentifier: string | undefined;
197
- name: string | undefined;
456
+ name?: string | undefined;
198
457
  description?: string | undefined;
199
458
  clientToken?: string | undefined;
200
459
  targetConfiguration: TargetConfiguration | undefined;
@@ -267,7 +526,7 @@ export interface GetGatewayTargetResponse {
267
526
  export interface UpdateGatewayTargetRequest {
268
527
  gatewayIdentifier: string | undefined;
269
528
  targetId: string | undefined;
270
- name: string | undefined;
529
+ name?: string | undefined;
271
530
  description?: string | undefined;
272
531
  targetConfiguration: TargetConfiguration | undefined;
273
532
  credentialProviderConfigurations?:
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListHarnessEndpointsCommandInput,
4
+ ListHarnessEndpointsCommandOutput,
5
+ } from "../commands/ListHarnessEndpointsCommand";
6
+ import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListHarnessEndpoints: (
8
+ config: BedrockAgentCoreControlPaginationConfiguration,
9
+ input: ListHarnessEndpointsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListHarnessEndpointsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListHarnessVersionsCommandInput,
4
+ ListHarnessVersionsCommandOutput,
5
+ } from "../commands/ListHarnessVersionsCommand";
6
+ import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListHarnessVersions: (
8
+ config: BedrockAgentCoreControlPaginationConfiguration,
9
+ input: ListHarnessVersionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListHarnessVersionsCommandOutput>;
@@ -15,7 +15,9 @@ export * from "./ListEvaluatorsPaginator";
15
15
  export * from "./ListGatewayRulesPaginator";
16
16
  export * from "./ListGatewaysPaginator";
17
17
  export * from "./ListGatewayTargetsPaginator";
18
+ export * from "./ListHarnessEndpointsPaginator";
18
19
  export * from "./ListHarnessesPaginator";
20
+ export * from "./ListHarnessVersionsPaginator";
19
21
  export * from "./ListMemoriesPaginator";
20
22
  export * from "./ListOauth2CredentialProvidersPaginator";
21
23
  export * from "./ListOnlineEvaluationConfigsPaginator";
@@ -28,6 +28,7 @@ export declare var AgentCardDefinition$: StaticStructureSchema;
28
28
  export declare var AgentRuntime$: StaticStructureSchema;
29
29
  export declare var AgentRuntimeEndpoint$: StaticStructureSchema;
30
30
  export declare var AgentSkillsDescriptor$: StaticStructureSchema;
31
+ export declare var AllowedWorkloadConfiguration$: StaticStructureSchema;
31
32
  export declare var ApiGatewayTargetConfiguration$: StaticStructureSchema;
32
33
  export declare var ApiGatewayToolConfiguration$: StaticStructureSchema;
33
34
  export declare var ApiGatewayToolFilter$: StaticStructureSchema;
@@ -59,6 +60,10 @@ export declare var ComponentConfiguration$: StaticStructureSchema;
59
60
  export declare var ConfigurationBundleReference$: StaticStructureSchema;
60
61
  export declare var ConfigurationBundleSummary$: StaticStructureSchema;
61
62
  export declare var ConfigurationBundleVersionSummary$: StaticStructureSchema;
63
+ export declare var ConnectorConfiguration$: StaticStructureSchema;
64
+ export declare var ConnectorParameterOverride$: StaticStructureSchema;
65
+ export declare var ConnectorSource$: StaticStructureSchema;
66
+ export declare var ConnectorTargetConfiguration$: StaticStructureSchema;
62
67
  export declare var ContainerConfiguration$: StaticStructureSchema;
63
68
  export declare var ContentConfiguration$: StaticStructureSchema;
64
69
  export declare var CreateAgentRuntimeEndpointRequest$: StaticStructureSchema;
@@ -87,6 +92,8 @@ export declare var CreateGatewayRuleRequest$: StaticStructureSchema;
87
92
  export declare var CreateGatewayRuleResponse$: StaticStructureSchema;
88
93
  export declare var CreateGatewayTargetRequest$: StaticStructureSchema;
89
94
  export declare var CreateGatewayTargetResponse$: StaticStructureSchema;
95
+ export declare var CreateHarnessEndpointRequest$: StaticStructureSchema;
96
+ export declare var CreateHarnessEndpointResponse$: StaticStructureSchema;
90
97
  export declare var CreateHarnessRequest$: StaticStructureSchema;
91
98
  export declare var CreateHarnessResponse$: StaticStructureSchema;
92
99
  export declare var CreateMemoryInput$: StaticStructureSchema;
@@ -118,6 +125,7 @@ export declare var CustomJWTAuthorizerConfiguration$: StaticStructureSchema;
118
125
  export declare var CustomMemoryStrategyInput$: StaticStructureSchema;
119
126
  export declare var CustomOauth2ProviderConfigInput$: StaticStructureSchema;
120
127
  export declare var CustomOauth2ProviderConfigOutput$: StaticStructureSchema;
128
+ export declare var CustomTransformConfiguration$: StaticStructureSchema;
121
129
  export declare var DatasetSummary$: StaticStructureSchema;
122
130
  export declare var DatasetVersionSummary$: StaticStructureSchema;
123
131
  export declare var DeleteAgentRuntimeEndpointRequest$: StaticStructureSchema;
@@ -146,6 +154,8 @@ export declare var DeleteGatewayRuleRequest$: StaticStructureSchema;
146
154
  export declare var DeleteGatewayRuleResponse$: StaticStructureSchema;
147
155
  export declare var DeleteGatewayTargetRequest$: StaticStructureSchema;
148
156
  export declare var DeleteGatewayTargetResponse$: StaticStructureSchema;
157
+ export declare var DeleteHarnessEndpointRequest$: StaticStructureSchema;
158
+ export declare var DeleteHarnessEndpointResponse$: StaticStructureSchema;
149
159
  export declare var DeleteHarnessRequest$: StaticStructureSchema;
150
160
  export declare var DeleteHarnessResponse$: StaticStructureSchema;
151
161
  export declare var DeleteMemoryInput$: StaticStructureSchema;
@@ -221,6 +231,8 @@ export declare var GetGatewayRuleRequest$: StaticStructureSchema;
221
231
  export declare var GetGatewayRuleResponse$: StaticStructureSchema;
222
232
  export declare var GetGatewayTargetRequest$: StaticStructureSchema;
223
233
  export declare var GetGatewayTargetResponse$: StaticStructureSchema;
234
+ export declare var GetHarnessEndpointRequest$: StaticStructureSchema;
235
+ export declare var GetHarnessEndpointResponse$: StaticStructureSchema;
224
236
  export declare var GetHarnessRequest$: StaticStructureSchema;
225
237
  export declare var GetHarnessResponse$: StaticStructureSchema;
226
238
  export declare var GetMemoryInput$: StaticStructureSchema;
@@ -270,11 +282,15 @@ export declare var HarnessAgentCoreMemoryRetrievalConfig$: StaticStructureSchema
270
282
  export declare var HarnessAgentCoreRuntimeEnvironment$: StaticStructureSchema;
271
283
  export declare var HarnessAgentCoreRuntimeEnvironmentRequest$: StaticStructureSchema;
272
284
  export declare var HarnessBedrockModelConfig$: StaticStructureSchema;
285
+ export declare var HarnessDisabledMemoryConfiguration$: StaticStructureSchema;
286
+ export declare var HarnessEndpoint$: StaticStructureSchema;
273
287
  export declare var HarnessGeminiModelConfig$: StaticStructureSchema;
274
288
  export declare var HarnessInlineFunctionConfig$: StaticStructureSchema;
275
289
  export declare var HarnessLiteLlmModelConfig$: StaticStructureSchema;
290
+ export declare var HarnessManagedMemoryConfiguration$: StaticStructureSchema;
276
291
  export declare var HarnessOpenAiModelConfig$: StaticStructureSchema;
277
292
  export declare var HarnessRemoteMcpConfig$: StaticStructureSchema;
293
+ export declare var HarnessSkillAwsSkillsSource$: StaticStructureSchema;
278
294
  export declare var HarnessSkillGitAuth$: StaticStructureSchema;
279
295
  export declare var HarnessSkillGitSource$: StaticStructureSchema;
280
296
  export declare var HarnessSkillS3Source$: StaticStructureSchema;
@@ -283,21 +299,30 @@ export declare var HarnessSummarizationConfiguration$: StaticStructureSchema;
283
299
  export declare var HarnessSummary$: StaticStructureSchema;
284
300
  export declare var HarnessTool$: StaticStructureSchema;
285
301
  export declare var HarnessTruncationConfiguration$: StaticStructureSchema;
302
+ export declare var HarnessVersionSummary$: StaticStructureSchema;
303
+ export declare var HostingEnvironment$: StaticStructureSchema;
304
+ export declare var HttpApiSchemaConfiguration$: StaticStructureSchema;
286
305
  export declare var IamCredentialProvider$: StaticStructureSchema;
287
306
  export declare var IamPrincipal$: StaticStructureSchema;
288
307
  export declare var IncludedOauth2ProviderConfigInput$: StaticStructureSchema;
289
308
  export declare var IncludedOauth2ProviderConfigOutput$: StaticStructureSchema;
290
309
  export declare var IndexedKey$: StaticStructureSchema;
291
310
  export declare var InferenceConfiguration$: StaticStructureSchema;
311
+ export declare var InferenceConnectorSource$: StaticStructureSchema;
312
+ export declare var InferenceConnectorTargetConfiguration$: StaticStructureSchema;
313
+ export declare var InferenceOperationConfiguration$: StaticStructureSchema;
314
+ export declare var InferenceProviderTargetConfiguration$: StaticStructureSchema;
292
315
  export declare var InlineExamplesSource$: StaticStructureSchema;
293
316
  export declare var Insight$: StaticStructureSchema;
294
317
  export declare var InterceptorInputConfiguration$: StaticStructureSchema;
318
+ export declare var InterceptorPayloadFilter$: StaticStructureSchema;
295
319
  export declare var InvocationConfiguration$: StaticStructureSchema;
296
320
  export declare var InvocationConfigurationInput$: StaticStructureSchema;
297
321
  export declare var KinesisResource$: StaticStructureSchema;
298
322
  export declare var KmsConfiguration$: StaticStructureSchema;
299
323
  export declare var LambdaEvaluatorConfig$: StaticStructureSchema;
300
324
  export declare var LambdaInterceptorConfiguration$: StaticStructureSchema;
325
+ export declare var LambdaTransformConfiguration$: StaticStructureSchema;
301
326
  export declare var LifecycleConfiguration$: StaticStructureSchema;
302
327
  export declare var LinkedinOauth2ProviderConfigInput$: StaticStructureSchema;
303
328
  export declare var LinkedinOauth2ProviderConfigOutput$: StaticStructureSchema;
@@ -333,8 +358,12 @@ export declare var ListGatewaysRequest$: StaticStructureSchema;
333
358
  export declare var ListGatewaysResponse$: StaticStructureSchema;
334
359
  export declare var ListGatewayTargetsRequest$: StaticStructureSchema;
335
360
  export declare var ListGatewayTargetsResponse$: StaticStructureSchema;
361
+ export declare var ListHarnessEndpointsRequest$: StaticStructureSchema;
362
+ export declare var ListHarnessEndpointsResponse$: StaticStructureSchema;
336
363
  export declare var ListHarnessesRequest$: StaticStructureSchema;
337
364
  export declare var ListHarnessesResponse$: StaticStructureSchema;
365
+ export declare var ListHarnessVersionsRequest$: StaticStructureSchema;
366
+ export declare var ListHarnessVersionsResponse$: StaticStructureSchema;
338
367
  export declare var ListMemoriesInput$: StaticStructureSchema;
339
368
  export declare var ListMemoriesOutput$: StaticStructureSchema;
340
369
  export declare var ListOauth2CredentialProvidersRequest$: StaticStructureSchema;
@@ -389,6 +418,8 @@ export declare var MetadataConfiguration$: StaticStructureSchema;
389
418
  export declare var MetadataSchemaEntry$: StaticStructureSchema;
390
419
  export declare var MicrosoftOauth2ProviderConfigInput$: StaticStructureSchema;
391
420
  export declare var MicrosoftOauth2ProviderConfigOutput$: StaticStructureSchema;
421
+ export declare var ModelEntry$: StaticStructureSchema;
422
+ export declare var ModelMapping$: StaticStructureSchema;
392
423
  export declare var ModifyInvocationConfigurationInput$: StaticStructureSchema;
393
424
  export declare var ModifyMemoryStrategies$: StaticStructureSchema;
394
425
  export declare var ModifyMemoryStrategyInput$: StaticStructureSchema;
@@ -404,6 +435,7 @@ export declare var OAuthCredentialProvider$: StaticStructureSchema;
404
435
  export declare var OnBehalfOfTokenExchangeConfigType$: StaticStructureSchema;
405
436
  export declare var OnlineEvaluationConfigSummary$: StaticStructureSchema;
406
437
  export declare var OutputConfig$: StaticStructureSchema;
438
+ export declare var PassthroughTargetConfiguration$: StaticStructureSchema;
407
439
  export declare var PaymentConnectorSummary$: StaticStructureSchema;
408
440
  export declare var PaymentCredentialProviderConfiguration$: StaticStructureSchema;
409
441
  export declare var PaymentCredentialProviderItem$: StaticStructureSchema;
@@ -415,9 +447,11 @@ export declare var PolicyGeneration$: StaticStructureSchema;
415
447
  export declare var PolicyGenerationAsset$: StaticStructureSchema;
416
448
  export declare var PolicyGenerationDetails$: StaticStructureSchema;
417
449
  export declare var PolicyGenerationSummary$: StaticStructureSchema;
450
+ export declare var PolicyStatement$: StaticStructureSchema;
418
451
  export declare var PolicySummary$: StaticStructureSchema;
419
452
  export declare var PrivateEndpointOverride$: StaticStructureSchema;
420
453
  export declare var ProtocolConfiguration$: StaticStructureSchema;
454
+ export declare var ProviderPrefix$: StaticStructureSchema;
421
455
  export declare var PutResourcePolicyRequest$: StaticStructureSchema;
422
456
  export declare var PutResourcePolicyResponse$: StaticStructureSchema;
423
457
  export declare var RecordingConfig$: StaticStructureSchema;
@@ -462,6 +496,7 @@ export declare var StartPolicyGenerationRequest$: StaticStructureSchema;
462
496
  export declare var StartPolicyGenerationResponse$: StaticStructureSchema;
463
497
  export declare var StaticOverride$: StaticStructureSchema;
464
498
  export declare var StaticRoute$: StaticStructureSchema;
499
+ export declare var StickinessConfiguration$: StaticStructureSchema;
465
500
  export declare var StrategyConfiguration$: StaticStructureSchema;
466
501
  export declare var StreamDeliveryResources$: StaticStructureSchema;
467
502
  export declare var StreamingConfiguration$: StaticStructureSchema;
@@ -532,6 +567,8 @@ export declare var UpdateGatewayRuleRequest$: StaticStructureSchema;
532
567
  export declare var UpdateGatewayRuleResponse$: StaticStructureSchema;
533
568
  export declare var UpdateGatewayTargetRequest$: StaticStructureSchema;
534
569
  export declare var UpdateGatewayTargetResponse$: StaticStructureSchema;
570
+ export declare var UpdateHarnessEndpointRequest$: StaticStructureSchema;
571
+ export declare var UpdateHarnessEndpointResponse$: StaticStructureSchema;
535
572
  export declare var UpdateHarnessRequest$: StaticStructureSchema;
536
573
  export declare var UpdateHarnessResponse$: StaticStructureSchema;
537
574
  export declare var UpdateMemoryInput$: StaticStructureSchema;
@@ -569,6 +606,7 @@ export declare var VersionCreatedBySource$: StaticStructureSchema;
569
606
  export declare var VersionFilter$: StaticStructureSchema;
570
607
  export declare var VersionLineageMetadata$: StaticStructureSchema;
571
608
  export declare var VpcConfig$: StaticStructureSchema;
609
+ export declare var WafConfiguration$: StaticStructureSchema;
572
610
  export declare var WeightedOverride$: StaticStructureSchema;
573
611
  export declare var WeightedRoute$: StaticStructureSchema;
574
612
  export declare var WorkloadIdentityDetails$: StaticStructureSchema;
@@ -616,7 +654,9 @@ export declare var HarnessSystemContentBlock$: StaticUnionSchema;
616
654
  export declare var HarnessToolConfiguration$: StaticUnionSchema;
617
655
  export declare var HarnessTruncationStrategyConfiguration$: StaticUnionSchema;
618
656
  export declare var HttpTargetConfiguration$: StaticUnionSchema;
657
+ export declare var InferenceTargetConfiguration$: StaticUnionSchema;
619
658
  export declare var InterceptorConfiguration$: StaticUnionSchema;
659
+ export declare var InterceptorPayloadExclusionSelector$: StaticUnionSchema;
620
660
  export declare var MatchPrincipalEntry$: StaticUnionSchema;
621
661
  export declare var McpTargetConfiguration$: StaticUnionSchema;
622
662
  export declare var McpToolSchemaConfiguration$: StaticUnionSchema;
@@ -660,6 +700,7 @@ export declare var CreateGateway$: StaticOperationSchema;
660
700
  export declare var CreateGatewayRule$: StaticOperationSchema;
661
701
  export declare var CreateGatewayTarget$: StaticOperationSchema;
662
702
  export declare var CreateHarness$: StaticOperationSchema;
703
+ export declare var CreateHarnessEndpoint$: StaticOperationSchema;
663
704
  export declare var CreateMemory$: StaticOperationSchema;
664
705
  export declare var CreateOauth2CredentialProvider$: StaticOperationSchema;
665
706
  export declare var CreateOnlineEvaluationConfig$: StaticOperationSchema;
@@ -685,6 +726,7 @@ export declare var DeleteGateway$: StaticOperationSchema;
685
726
  export declare var DeleteGatewayRule$: StaticOperationSchema;
686
727
  export declare var DeleteGatewayTarget$: StaticOperationSchema;
687
728
  export declare var DeleteHarness$: StaticOperationSchema;
729
+ export declare var DeleteHarnessEndpoint$: StaticOperationSchema;
688
730
  export declare var DeleteMemory$: StaticOperationSchema;
689
731
  export declare var DeleteOauth2CredentialProvider$: StaticOperationSchema;
690
732
  export declare var DeleteOnlineEvaluationConfig$: StaticOperationSchema;
@@ -711,6 +753,7 @@ export declare var GetGateway$: StaticOperationSchema;
711
753
  export declare var GetGatewayRule$: StaticOperationSchema;
712
754
  export declare var GetGatewayTarget$: StaticOperationSchema;
713
755
  export declare var GetHarness$: StaticOperationSchema;
756
+ export declare var GetHarnessEndpoint$: StaticOperationSchema;
714
757
  export declare var GetMemory$: StaticOperationSchema;
715
758
  export declare var GetOauth2CredentialProvider$: StaticOperationSchema;
716
759
  export declare var GetOnlineEvaluationConfig$: StaticOperationSchema;
@@ -744,7 +787,9 @@ export declare var ListEvaluators$: StaticOperationSchema;
744
787
  export declare var ListGatewayRules$: StaticOperationSchema;
745
788
  export declare var ListGateways$: StaticOperationSchema;
746
789
  export declare var ListGatewayTargets$: StaticOperationSchema;
790
+ export declare var ListHarnessEndpoints$: StaticOperationSchema;
747
791
  export declare var ListHarnesses$: StaticOperationSchema;
792
+ export declare var ListHarnessVersions$: StaticOperationSchema;
748
793
  export declare var ListMemories$: StaticOperationSchema;
749
794
  export declare var ListOauth2CredentialProviders$: StaticOperationSchema;
750
795
  export declare var ListOnlineEvaluationConfigs$: StaticOperationSchema;
@@ -780,6 +825,7 @@ export declare var UpdateGateway$: StaticOperationSchema;
780
825
  export declare var UpdateGatewayRule$: StaticOperationSchema;
781
826
  export declare var UpdateGatewayTarget$: StaticOperationSchema;
782
827
  export declare var UpdateHarness$: StaticOperationSchema;
828
+ export declare var UpdateHarnessEndpoint$: StaticOperationSchema;
783
829
  export declare var UpdateMemory$: StaticOperationSchema;
784
830
  export declare var UpdateOauth2CredentialProvider$: StaticOperationSchema;
785
831
  export declare var UpdateOnlineEvaluationConfig$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agentcore-control",
3
3
  "description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
4
- "version": "3.1070.0",
4
+ "version": "3.1072.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -21,8 +21,8 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.21",
25
- "@aws-sdk/credential-provider-node": "^3.972.56",
24
+ "@aws-sdk/core": "^3.974.22",
25
+ "@aws-sdk/credential-provider-node": "^3.972.57",
26
26
  "@aws-sdk/types": "^3.973.13",
27
27
  "@smithy/core": "^3.24.6",
28
28
  "@smithy/fetch-http-handler": "^5.4.6",