@aws-sdk/client-bedrock-agentcore-control 3.1036.0 → 3.1038.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 (53) hide show
  1. package/dist-cjs/index.js +17 -6
  2. package/dist-cjs/schemas/schemas_0.js +39 -28
  3. package/dist-es/models/enums.js +14 -4
  4. package/dist-es/schemas/schemas_0.js +32 -21
  5. package/dist-es/waiters/waitForMemoryCreated.js +1 -1
  6. package/dist-es/waiters/waitForPolicyActive.js +1 -1
  7. package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
  8. package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
  9. package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
  10. package/dist-types/BedrockAgentCoreControl.d.ts +7 -6
  11. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +45 -4
  12. package/dist-types/commands/CreateGatewayCommand.d.ts +87 -3
  13. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
  14. package/dist-types/commands/CreateHarnessCommand.d.ts +87 -3
  15. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +88 -3
  16. package/dist-types/commands/CreateRegistryCommand.d.ts +43 -0
  17. package/dist-types/commands/DeleteHarnessCommand.d.ts +43 -0
  18. package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -0
  19. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +44 -1
  20. package/dist-types/commands/GetGatewayCommand.d.ts +43 -0
  21. package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
  22. package/dist-types/commands/GetHarnessCommand.d.ts +43 -0
  23. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +45 -0
  24. package/dist-types/commands/GetRegistryCommand.d.ts +43 -0
  25. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +44 -1
  27. package/dist-types/commands/UpdateGatewayCommand.d.ts +86 -0
  28. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
  29. package/dist-types/commands/UpdateHarnessCommand.d.ts +86 -0
  30. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +87 -0
  31. package/dist-types/commands/UpdateRegistryCommand.d.ts +86 -0
  32. package/dist-types/models/enums.d.ts +30 -12
  33. package/dist-types/models/models_0.d.ts +151 -136
  34. package/dist-types/models/models_1.d.ts +53 -2
  35. package/dist-types/schemas/schemas_0.d.ts +2 -1
  36. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +7 -6
  37. package/dist-types/ts3.4/models/enums.d.ts +17 -6
  38. package/dist-types/ts3.4/models/models_0.d.ts +59 -56
  39. package/dist-types/ts3.4/models/models_1.d.ts +13 -1
  40. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -1
  41. package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
  42. package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
  43. package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
  44. package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
  45. package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
  46. package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
  47. package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
  48. package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
  49. package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
  50. package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
  51. package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
  52. package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
  53. package/package.json +8 -8
@@ -224,12 +224,69 @@ export interface CustomClaimValidationType {
224
224
  inboundTokenClaimValueType: InboundTokenClaimValueType | undefined;
225
225
  authorizingClaimMatchValue: AuthorizingClaimMatchValueType | undefined;
226
226
  }
227
+ export interface ManagedVpcResource {
228
+ vpcIdentifier: string | undefined;
229
+ subnetIds: string[] | undefined;
230
+ endpointIpAddressType: EndpointIpAddressType | undefined;
231
+ securityGroupIds?: string[] | undefined;
232
+ tags?: Record<string, string> | undefined;
233
+ routingDomain?: string | undefined;
234
+ }
235
+ export type SelfManagedLatticeResource =
236
+ | SelfManagedLatticeResource.ResourceConfigurationIdentifierMember
237
+ | SelfManagedLatticeResource.$UnknownMember;
238
+ export declare namespace SelfManagedLatticeResource {
239
+ interface ResourceConfigurationIdentifierMember {
240
+ resourceConfigurationIdentifier: string;
241
+ $unknown?: never;
242
+ }
243
+ interface $UnknownMember {
244
+ resourceConfigurationIdentifier?: never;
245
+ $unknown: [string, any];
246
+ }
247
+ interface Visitor<T> {
248
+ resourceConfigurationIdentifier: (value: string) => T;
249
+ _: (name: string, value: any) => T;
250
+ }
251
+ }
252
+ export type PrivateEndpoint =
253
+ | PrivateEndpoint.ManagedVpcResourceMember
254
+ | PrivateEndpoint.SelfManagedLatticeResourceMember
255
+ | PrivateEndpoint.$UnknownMember;
256
+ export declare namespace PrivateEndpoint {
257
+ interface SelfManagedLatticeResourceMember {
258
+ selfManagedLatticeResource: SelfManagedLatticeResource;
259
+ managedVpcResource?: never;
260
+ $unknown?: never;
261
+ }
262
+ interface ManagedVpcResourceMember {
263
+ selfManagedLatticeResource?: never;
264
+ managedVpcResource: ManagedVpcResource;
265
+ $unknown?: never;
266
+ }
267
+ interface $UnknownMember {
268
+ selfManagedLatticeResource?: never;
269
+ managedVpcResource?: never;
270
+ $unknown: [string, any];
271
+ }
272
+ interface Visitor<T> {
273
+ selfManagedLatticeResource: (value: SelfManagedLatticeResource) => T;
274
+ managedVpcResource: (value: ManagedVpcResource) => T;
275
+ _: (name: string, value: any) => T;
276
+ }
277
+ }
278
+ export interface PrivateEndpointOverride {
279
+ domain: string | undefined;
280
+ privateEndpoint: PrivateEndpoint | undefined;
281
+ }
227
282
  export interface CustomJWTAuthorizerConfiguration {
228
283
  discoveryUrl: string | undefined;
229
284
  allowedAudience?: string[] | undefined;
230
285
  allowedClients?: string[] | undefined;
231
286
  allowedScopes?: string[] | undefined;
232
287
  customClaims?: CustomClaimValidationType[] | undefined;
288
+ privateEndpoint?: PrivateEndpoint | undefined;
289
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
233
290
  }
234
291
  export type AuthorizerConfiguration =
235
292
  | AuthorizerConfiguration.CustomJWTAuthorizerMember
@@ -1146,57 +1203,6 @@ export interface MetadataConfiguration {
1146
1203
  allowedQueryParameters?: string[] | undefined;
1147
1204
  allowedResponseHeaders?: string[] | undefined;
1148
1205
  }
1149
- export interface ManagedLatticeResource {
1150
- vpcIdentifier: string | undefined;
1151
- subnetIds: string[] | undefined;
1152
- endpointIpAddressType: EndpointIpAddressType | undefined;
1153
- securityGroupIds?: string[] | undefined;
1154
- tags?: Record<string, string> | undefined;
1155
- routingDomain?: string | undefined;
1156
- }
1157
- export type SelfManagedLatticeResource =
1158
- | SelfManagedLatticeResource.ResourceConfigurationIdentifierMember
1159
- | SelfManagedLatticeResource.$UnknownMember;
1160
- export declare namespace SelfManagedLatticeResource {
1161
- interface ResourceConfigurationIdentifierMember {
1162
- resourceConfigurationIdentifier: string;
1163
- $unknown?: never;
1164
- }
1165
- interface $UnknownMember {
1166
- resourceConfigurationIdentifier?: never;
1167
- $unknown: [string, any];
1168
- }
1169
- interface Visitor<T> {
1170
- resourceConfigurationIdentifier: (value: string) => T;
1171
- _: (name: string, value: any) => T;
1172
- }
1173
- }
1174
- export type PrivateEndpoint =
1175
- | PrivateEndpoint.ManagedLatticeResourceMember
1176
- | PrivateEndpoint.SelfManagedLatticeResourceMember
1177
- | PrivateEndpoint.$UnknownMember;
1178
- export declare namespace PrivateEndpoint {
1179
- interface SelfManagedLatticeResourceMember {
1180
- selfManagedLatticeResource: SelfManagedLatticeResource;
1181
- managedLatticeResource?: never;
1182
- $unknown?: never;
1183
- }
1184
- interface ManagedLatticeResourceMember {
1185
- selfManagedLatticeResource?: never;
1186
- managedLatticeResource: ManagedLatticeResource;
1187
- $unknown?: never;
1188
- }
1189
- interface $UnknownMember {
1190
- selfManagedLatticeResource?: never;
1191
- managedLatticeResource?: never;
1192
- $unknown: [string, any];
1193
- }
1194
- interface Visitor<T> {
1195
- selfManagedLatticeResource: (value: SelfManagedLatticeResource) => T;
1196
- managedLatticeResource: (value: ManagedLatticeResource) => T;
1197
- _: (name: string, value: any) => T;
1198
- }
1199
- }
1200
1206
  export interface ApiGatewayToolFilter {
1201
1207
  filterPath: string | undefined;
1202
1208
  methods: RestApiMethod[] | undefined;
@@ -2750,6 +2756,8 @@ export interface CustomOauth2ProviderConfigInput {
2750
2756
  oauthDiscovery: Oauth2Discovery | undefined;
2751
2757
  clientId: string | undefined;
2752
2758
  clientSecret: string | undefined;
2759
+ privateEndpoint?: PrivateEndpoint | undefined;
2760
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
2753
2761
  }
2754
2762
  export interface GithubOauth2ProviderConfigInput {
2755
2763
  clientId: string | undefined;
@@ -2770,8 +2778,3 @@ export interface LinkedinOauth2ProviderConfigInput {
2770
2778
  clientId: string | undefined;
2771
2779
  clientSecret: string | undefined;
2772
2780
  }
2773
- export interface MicrosoftOauth2ProviderConfigInput {
2774
- clientId: string | undefined;
2775
- clientSecret: string | undefined;
2776
- tenantId?: string | undefined;
2777
- }
@@ -15,6 +15,7 @@ import {
15
15
  RegistryRecordStatus,
16
16
  RegistryStatus,
17
17
  SchemaType,
18
+ Status,
18
19
  SynchronizationType,
19
20
  TargetStatus,
20
21
  } from "./enums";
@@ -36,15 +37,20 @@ import {
36
37
  ManagedResourceDetails,
37
38
  McpServerTargetConfiguration,
38
39
  MetadataConfiguration,
39
- MicrosoftOauth2ProviderConfigInput,
40
40
  Oauth2Discovery,
41
41
  PrivateEndpoint,
42
+ PrivateEndpointOverride,
42
43
  S3Configuration,
43
44
  Secret,
44
45
  SkillDefinition,
45
46
  SkillMdDefinition,
46
47
  UpdatedAuthorizerConfiguration,
47
48
  } from "./models_0";
49
+ export interface MicrosoftOauth2ProviderConfigInput {
50
+ clientId: string | undefined;
51
+ clientSecret: string | undefined;
52
+ tenantId?: string | undefined;
53
+ }
48
54
  export interface SalesforceOauth2ProviderConfigInput {
49
55
  clientId: string | undefined;
50
56
  clientSecret: string | undefined;
@@ -221,6 +227,8 @@ export interface AtlassianOauth2ProviderConfigOutput {
221
227
  export interface CustomOauth2ProviderConfigOutput {
222
228
  oauthDiscovery: Oauth2Discovery | undefined;
223
229
  clientId?: string | undefined;
230
+ privateEndpoint?: PrivateEndpoint | undefined;
231
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
224
232
  }
225
233
  export interface GithubOauth2ProviderConfigOutput {
226
234
  oauthDiscovery: Oauth2Discovery | undefined;
@@ -411,6 +419,7 @@ export interface CreateOauth2CredentialProviderResponse {
411
419
  credentialProviderArn: string | undefined;
412
420
  callbackUrl?: string | undefined;
413
421
  oauth2ProviderConfigOutput?: Oauth2ProviderConfigOutput | undefined;
422
+ status?: Status | undefined;
414
423
  }
415
424
  export interface DeleteOauth2CredentialProviderRequest {
416
425
  name: string | undefined;
@@ -428,6 +437,8 @@ export interface GetOauth2CredentialProviderResponse {
428
437
  oauth2ProviderConfigOutput: Oauth2ProviderConfigOutput | undefined;
429
438
  createdTime: Date | undefined;
430
439
  lastUpdatedTime: Date | undefined;
440
+ status?: Status | undefined;
441
+ failureReason?: string | undefined;
431
442
  }
432
443
  export interface ListOauth2CredentialProvidersRequest {
433
444
  nextToken?: string | undefined;
@@ -458,6 +469,7 @@ export interface UpdateOauth2CredentialProviderResponse {
458
469
  oauth2ProviderConfigOutput: Oauth2ProviderConfigOutput | undefined;
459
470
  createdTime: Date | undefined;
460
471
  lastUpdatedTime: Date | undefined;
472
+ status?: Status | undefined;
461
473
  }
462
474
  export interface CloudWatchLogsInputConfig {
463
475
  logGroupNames: string[] | undefined;
@@ -277,8 +277,8 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
277
277
  export declare var ListWorkloadIdentitiesRequest$: StaticStructureSchema;
278
278
  export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
279
279
  export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
280
- export declare var ManagedLatticeResource$: StaticStructureSchema;
281
280
  export declare var ManagedResourceDetails$: StaticStructureSchema;
281
+ export declare var ManagedVpcResource$: StaticStructureSchema;
282
282
  export declare var McpDescriptor$: StaticStructureSchema;
283
283
  export declare var MCPGatewayConfiguration$: StaticStructureSchema;
284
284
  export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
@@ -309,6 +309,7 @@ export declare var PolicyEngine$: StaticStructureSchema;
309
309
  export declare var PolicyGeneration$: StaticStructureSchema;
310
310
  export declare var PolicyGenerationAsset$: StaticStructureSchema;
311
311
  export declare var PolicyGenerationDetails$: StaticStructureSchema;
312
+ export declare var PrivateEndpointOverride$: StaticStructureSchema;
312
313
  export declare var ProtocolConfiguration$: StaticStructureSchema;
313
314
  export declare var PutResourcePolicyRequest$: StaticStructureSchema;
314
315
  export declare var PutResourcePolicyResponse$: StaticStructureSchema;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { GetMemoryCommandInput } from "../commands/GetMemoryCommand";
3
+ import {
4
+ GetMemoryCommandInput,
5
+ GetMemoryCommandOutput,
6
+ } from "../commands/GetMemoryCommand";
7
+ import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
8
  export declare const waitForMemoryCreated: (
5
9
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
6
10
  input: GetMemoryCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetMemoryCommandOutput | BedrockAgentCoreControlServiceException>
13
+ >;
8
14
  export declare const waitUntilMemoryCreated: (
9
15
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
10
16
  input: GetMemoryCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetMemoryCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { GetPolicyCommandInput } from "../commands/GetPolicyCommand";
3
+ import {
4
+ GetPolicyCommandInput,
5
+ GetPolicyCommandOutput,
6
+ } from "../commands/GetPolicyCommand";
7
+ import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
8
  export declare const waitForPolicyActive: (
5
9
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
6
10
  input: GetPolicyCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>
13
+ >;
8
14
  export declare const waitUntilPolicyActive: (
9
15
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
10
16
  input: GetPolicyCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetPolicyCommandOutput>>;
@@ -1,11 +1,18 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { GetPolicyCommandInput } from "../commands/GetPolicyCommand";
3
+ import {
4
+ GetPolicyCommandInput,
5
+ GetPolicyCommandOutput,
6
+ } from "../commands/GetPolicyCommand";
7
+ import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
8
+ import { ResourceNotFoundException } from "../models/errors";
4
9
  export declare const waitForPolicyDeleted: (
5
10
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
6
11
  input: GetPolicyCommandInput
7
- ) => Promise<WaiterResult>;
12
+ ) => Promise<
13
+ WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>
14
+ >;
8
15
  export declare const waitUntilPolicyDeleted: (
9
16
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
10
17
  input: GetPolicyCommandInput
11
- ) => Promise<WaiterResult>;
18
+ ) => Promise<WaiterResult<ResourceNotFoundException>>;
@@ -1,11 +1,19 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
3
+ import {
4
+ GetPolicyEngineCommandInput,
5
+ GetPolicyEngineCommandOutput,
6
+ } from "../commands/GetPolicyEngineCommand";
7
+ import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
8
  export declare const waitForPolicyEngineActive: (
5
9
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
6
10
  input: GetPolicyEngineCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<
13
+ GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException
14
+ >
15
+ >;
8
16
  export declare const waitUntilPolicyEngineActive: (
9
17
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
10
18
  input: GetPolicyEngineCommandInput
11
- ) => Promise<WaiterResult>;
19
+ ) => Promise<WaiterResult<GetPolicyEngineCommandOutput>>;
@@ -1,11 +1,20 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
3
+ import {
4
+ GetPolicyEngineCommandInput,
5
+ GetPolicyEngineCommandOutput,
6
+ } from "../commands/GetPolicyEngineCommand";
7
+ import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
8
+ import { ResourceNotFoundException } from "../models/errors";
4
9
  export declare const waitForPolicyEngineDeleted: (
5
10
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
6
11
  input: GetPolicyEngineCommandInput
7
- ) => Promise<WaiterResult>;
12
+ ) => Promise<
13
+ WaiterResult<
14
+ GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException
15
+ >
16
+ >;
8
17
  export declare const waitUntilPolicyEngineDeleted: (
9
18
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
10
19
  input: GetPolicyEngineCommandInput
11
- ) => Promise<WaiterResult>;
20
+ ) => Promise<WaiterResult<ResourceNotFoundException>>;
@@ -1,11 +1,19 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
2
  import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { GetPolicyGenerationCommandInput } from "../commands/GetPolicyGenerationCommand";
3
+ import {
4
+ GetPolicyGenerationCommandInput,
5
+ GetPolicyGenerationCommandOutput,
6
+ } from "../commands/GetPolicyGenerationCommand";
7
+ import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
8
  export declare const waitForPolicyGenerationCompleted: (
5
9
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
6
10
  input: GetPolicyGenerationCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<
13
+ GetPolicyGenerationCommandOutput | BedrockAgentCoreControlServiceException
14
+ >
15
+ >;
8
16
  export declare const waitUntilPolicyGenerationCompleted: (
9
17
  params: WaiterConfiguration<BedrockAgentCoreControlClient>,
10
18
  input: GetPolicyGenerationCommandInput
11
- ) => Promise<WaiterResult>;
19
+ ) => Promise<WaiterResult<GetPolicyGenerationCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { type GetMemoryCommandInput } from "../commands/GetMemoryCommand";
3
+ import { type GetMemoryCommandInput, type GetMemoryCommandOutput } from "../commands/GetMemoryCommand";
4
+ import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilMemoryCreated instead. waitForMemoryCreated does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult<GetMemoryCommandOutput | BedrockAgentCoreControlServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetMemoryCommand for polling.
13
14
  */
14
- export declare const waitUntilMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult<GetMemoryCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { type GetPolicyCommandInput } from "../commands/GetPolicyCommand";
3
+ import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
4
+ import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
5
  /**
5
6
  * Wait until a Policy is active
6
7
  * @deprecated Use waitUntilPolicyActive instead. waitForPolicyActive does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>>;
9
10
  /**
10
11
  * Wait until a Policy is active
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetPolicyCommand for polling.
13
14
  */
14
- export declare const waitUntilPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput>>;
@@ -1,14 +1,16 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { type GetPolicyCommandInput } from "../commands/GetPolicyCommand";
3
+ import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
4
+ import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
5
+ import type { ResourceNotFoundException } from "../models/errors";
4
6
  /**
5
7
  * Wait until a Policy is deleted
6
8
  * @deprecated Use waitUntilPolicyDeleted instead. waitForPolicyDeleted does not throw error in non-success cases.
7
9
  */
8
- export declare const waitForPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
10
+ export declare const waitForPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>>;
9
11
  /**
10
12
  * Wait until a Policy is deleted
11
13
  * @param params - Waiter configuration options.
12
14
  * @param input - The input to GetPolicyCommand for polling.
13
15
  */
14
- export declare const waitUntilPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
16
+ export declare const waitUntilPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<ResourceNotFoundException>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { type GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
3
+ import { type GetPolicyEngineCommandInput, type GetPolicyEngineCommandOutput } from "../commands/GetPolicyEngineCommand";
4
+ import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
5
  /**
5
6
  * Wait until a PolicyEngine is active
6
7
  * @deprecated Use waitUntilPolicyEngineActive instead. waitForPolicyEngineActive does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException>>;
9
10
  /**
10
11
  * Wait until a PolicyEngine is active
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetPolicyEngineCommand for polling.
13
14
  */
14
- export declare const waitUntilPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<GetPolicyEngineCommandOutput>>;
@@ -1,14 +1,16 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { type GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
3
+ import { type GetPolicyEngineCommandInput, type GetPolicyEngineCommandOutput } from "../commands/GetPolicyEngineCommand";
4
+ import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
5
+ import type { ResourceNotFoundException } from "../models/errors";
4
6
  /**
5
7
  * Wait until a PolicyEngine is deleted
6
8
  * @deprecated Use waitUntilPolicyEngineDeleted instead. waitForPolicyEngineDeleted does not throw error in non-success cases.
7
9
  */
8
- export declare const waitForPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
10
+ export declare const waitForPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException>>;
9
11
  /**
10
12
  * Wait until a PolicyEngine is deleted
11
13
  * @param params - Waiter configuration options.
12
14
  * @param input - The input to GetPolicyEngineCommand for polling.
13
15
  */
14
- export declare const waitUntilPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
16
+ export declare const waitUntilPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<ResourceNotFoundException>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
2
  import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
3
- import { type GetPolicyGenerationCommandInput } from "../commands/GetPolicyGenerationCommand";
3
+ import { type GetPolicyGenerationCommandInput, type GetPolicyGenerationCommandOutput } from "../commands/GetPolicyGenerationCommand";
4
+ import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
4
5
  /**
5
6
  * Wait until policy generation is completed
6
7
  * @deprecated Use waitUntilPolicyGenerationCompleted instead. waitForPolicyGenerationCompleted does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult<GetPolicyGenerationCommandOutput | BedrockAgentCoreControlServiceException>>;
9
10
  /**
10
11
  * Wait until policy generation is completed
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetPolicyGenerationCommand for polling.
13
14
  */
14
- export declare const waitUntilPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult<GetPolicyGenerationCommandOutput>>;
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.1036.0",
4
+ "version": "3.1038.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 client-bedrock-agentcore-control",
@@ -21,17 +21,17 @@
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.5",
25
- "@aws-sdk/credential-provider-node": "^3.972.36",
24
+ "@aws-sdk/core": "^3.974.6",
25
+ "@aws-sdk/credential-provider-node": "^3.972.37",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.10",
27
27
  "@aws-sdk/middleware-logger": "^3.972.10",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.11",
29
- "@aws-sdk/middleware-user-agent": "^3.972.35",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.36",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.13",
31
31
  "@aws-sdk/types": "^3.973.8",
32
32
  "@aws-sdk/util-endpoints": "^3.996.8",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.10",
34
- "@aws-sdk/util-user-agent-node": "^3.973.21",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.22",
35
35
  "@smithy/config-resolver": "^4.4.17",
36
36
  "@smithy/core": "^3.23.17",
37
37
  "@smithy/fetch-http-handler": "^5.3.17",
@@ -39,7 +39,7 @@
39
39
  "@smithy/invalid-dependency": "^4.2.14",
40
40
  "@smithy/middleware-content-length": "^4.2.14",
41
41
  "@smithy/middleware-endpoint": "^4.4.32",
42
- "@smithy/middleware-retry": "^4.5.5",
42
+ "@smithy/middleware-retry": "^4.5.6",
43
43
  "@smithy/middleware-serde": "^4.2.20",
44
44
  "@smithy/middleware-stack": "^4.2.14",
45
45
  "@smithy/node-config-provider": "^4.3.14",
@@ -55,9 +55,9 @@
55
55
  "@smithy/util-defaults-mode-node": "^4.2.54",
56
56
  "@smithy/util-endpoints": "^3.4.2",
57
57
  "@smithy/util-middleware": "^4.2.14",
58
- "@smithy/util-retry": "^4.3.4",
58
+ "@smithy/util-retry": "^4.3.5",
59
59
  "@smithy/util-utf8": "^4.2.2",
60
- "@smithy/util-waiter": "^4.2.16",
60
+ "@smithy/util-waiter": "^4.3.0",
61
61
  "tslib": "^2.6.2"
62
62
  },
63
63
  "devDependencies": {