@aws-sdk/client-bedrock-agentcore 3.936.0 → 3.939.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.
- package/README.md +17 -1
- package/dist-cjs/index.js +131 -3
- package/dist-es/BedrockAgentCore.js +4 -0
- package/dist-es/commands/ListMemoryExtractionJobsCommand.js +16 -0
- package/dist-es/commands/StartMemoryExtractionJobCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/pagination/ListMemoryExtractionJobsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +96 -3
- package/dist-types/BedrockAgentCore.d.ts +15 -1
- package/dist-types/BedrockAgentCoreClient.d.ts +5 -3
- package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +118 -0
- package/dist-types/commands/StartMemoryExtractionJobCommand.d.ts +96 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +207 -10
- package/dist-types/pagination/ListMemoryExtractionJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +14 -0
- package/dist-types/ts3.4/BedrockAgentCore.d.ts +34 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ListMemoryExtractionJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartMemoryExtractionJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +58 -0
- package/dist-types/ts3.4/pagination/ListMemoryExtractionJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types";
|
|
2
|
-
import { AutomationStreamStatus, BrowserSessionStatus, CodeInterpreterSessionStatus, ContentBlockType, MemoryRecordStatus, Oauth2FlowType, OperatorType, ProgrammingLanguage, ResourceContentType, Role, SessionStatus, TaskStatus, ToolName } from "./enums";
|
|
2
|
+
import { AutomationStreamStatus, BrowserSessionStatus, CodeInterpreterSessionStatus, ContentBlockType, ExtractionJobStatus, MemoryRecordStatus, Oauth2FlowType, OperatorType, ProgrammingLanguage, ResourceContentType, Role, SessionStatus, TaskStatus, ToolName } from "./enums";
|
|
3
3
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException } from "./errors";
|
|
4
4
|
/**
|
|
5
5
|
* <p>Contains summary information about an actor in an AgentCore Memory resource.</p>
|
|
@@ -2175,7 +2175,7 @@ export interface ListActorsInput {
|
|
|
2175
2175
|
*/
|
|
2176
2176
|
memoryId: string | undefined;
|
|
2177
2177
|
/**
|
|
2178
|
-
* <p>The maximum number of results to return in a single call.
|
|
2178
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
2179
2179
|
* @public
|
|
2180
2180
|
*/
|
|
2181
2181
|
maxResults?: number | undefined;
|
|
@@ -2329,12 +2329,12 @@ export interface ListEventsInput {
|
|
|
2329
2329
|
*/
|
|
2330
2330
|
memoryId: string | undefined;
|
|
2331
2331
|
/**
|
|
2332
|
-
* <p>The identifier of the session for which to list events
|
|
2332
|
+
* <p>The identifier of the session for which to list events.</p>
|
|
2333
2333
|
* @public
|
|
2334
2334
|
*/
|
|
2335
2335
|
sessionId: string | undefined;
|
|
2336
2336
|
/**
|
|
2337
|
-
* <p>The identifier of the actor for which to list events
|
|
2337
|
+
* <p>The identifier of the actor for which to list events.</p>
|
|
2338
2338
|
* @public
|
|
2339
2339
|
*/
|
|
2340
2340
|
actorId: string | undefined;
|
|
@@ -2349,7 +2349,7 @@ export interface ListEventsInput {
|
|
|
2349
2349
|
*/
|
|
2350
2350
|
filter?: FilterInput | undefined;
|
|
2351
2351
|
/**
|
|
2352
|
-
* <p>The maximum number of results to return in a single call.
|
|
2352
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
2353
2353
|
* @public
|
|
2354
2354
|
*/
|
|
2355
2355
|
maxResults?: number | undefined;
|
|
@@ -2374,6 +2374,162 @@ export interface ListEventsOutput {
|
|
|
2374
2374
|
*/
|
|
2375
2375
|
nextToken?: string | undefined;
|
|
2376
2376
|
}
|
|
2377
|
+
/**
|
|
2378
|
+
* <p>Filters for querying memory extraction jobs based on various criteria.</p>
|
|
2379
|
+
* @public
|
|
2380
|
+
*/
|
|
2381
|
+
export interface ExtractionJobFilterInput {
|
|
2382
|
+
/**
|
|
2383
|
+
* <p>The memory strategy identifier to filter extraction jobs by. If specified, only extraction jobs with this strategy ID are returned.</p>
|
|
2384
|
+
* @public
|
|
2385
|
+
*/
|
|
2386
|
+
strategyId?: string | undefined;
|
|
2387
|
+
/**
|
|
2388
|
+
* <p>The unique identifier of the session. If specified, only extraction jobs with this session ID are returned.</p>
|
|
2389
|
+
* @public
|
|
2390
|
+
*/
|
|
2391
|
+
sessionId?: string | undefined;
|
|
2392
|
+
/**
|
|
2393
|
+
* <p>The identifier of the actor. If specified, only extraction jobs with this actor ID are returned.</p>
|
|
2394
|
+
* @public
|
|
2395
|
+
*/
|
|
2396
|
+
actorId?: string | undefined;
|
|
2397
|
+
/**
|
|
2398
|
+
* <p>The status of the extraction job. If specified, only extraction jobs with this status are returned.</p>
|
|
2399
|
+
* @public
|
|
2400
|
+
*/
|
|
2401
|
+
status?: ExtractionJobStatus | undefined;
|
|
2402
|
+
}
|
|
2403
|
+
/**
|
|
2404
|
+
* @public
|
|
2405
|
+
*/
|
|
2406
|
+
export interface ListMemoryExtractionJobsInput {
|
|
2407
|
+
/**
|
|
2408
|
+
* <p>The unique identifier of the memory to list extraction jobs for.</p>
|
|
2409
|
+
* @public
|
|
2410
|
+
*/
|
|
2411
|
+
memoryId: string | undefined;
|
|
2412
|
+
/**
|
|
2413
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
2414
|
+
* @public
|
|
2415
|
+
*/
|
|
2416
|
+
maxResults?: number | undefined;
|
|
2417
|
+
/**
|
|
2418
|
+
* <p>Filter criteria to apply when listing extraction jobs.</p>
|
|
2419
|
+
* @public
|
|
2420
|
+
*/
|
|
2421
|
+
filter?: ExtractionJobFilterInput | undefined;
|
|
2422
|
+
/**
|
|
2423
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p>
|
|
2424
|
+
* @public
|
|
2425
|
+
*/
|
|
2426
|
+
nextToken?: string | undefined;
|
|
2427
|
+
}
|
|
2428
|
+
/**
|
|
2429
|
+
* <p>Metadata information associated with this message.</p>
|
|
2430
|
+
* @public
|
|
2431
|
+
*/
|
|
2432
|
+
export interface MessageMetadata {
|
|
2433
|
+
/**
|
|
2434
|
+
* <p>The identifier of the event associated with this message.</p>
|
|
2435
|
+
* @public
|
|
2436
|
+
*/
|
|
2437
|
+
eventId: string | undefined;
|
|
2438
|
+
/**
|
|
2439
|
+
* <p>The position of this message within that event’s ordered list of messages.</p>
|
|
2440
|
+
* @public
|
|
2441
|
+
*/
|
|
2442
|
+
messageIndex: number | undefined;
|
|
2443
|
+
}
|
|
2444
|
+
/**
|
|
2445
|
+
* <p>The list of messages that compose this extraction job.</p>
|
|
2446
|
+
* @public
|
|
2447
|
+
*/
|
|
2448
|
+
export type ExtractionJobMessages = ExtractionJobMessages.MessagesListMember | ExtractionJobMessages.$UnknownMember;
|
|
2449
|
+
/**
|
|
2450
|
+
* @public
|
|
2451
|
+
*/
|
|
2452
|
+
export declare namespace ExtractionJobMessages {
|
|
2453
|
+
/**
|
|
2454
|
+
* <p>The list of messages that compose this extraction job.</p>
|
|
2455
|
+
* @public
|
|
2456
|
+
*/
|
|
2457
|
+
interface MessagesListMember {
|
|
2458
|
+
messagesList: MessageMetadata[];
|
|
2459
|
+
$unknown?: never;
|
|
2460
|
+
}
|
|
2461
|
+
/**
|
|
2462
|
+
* @public
|
|
2463
|
+
*/
|
|
2464
|
+
interface $UnknownMember {
|
|
2465
|
+
messagesList?: never;
|
|
2466
|
+
$unknown: [string, any];
|
|
2467
|
+
}
|
|
2468
|
+
/**
|
|
2469
|
+
* @deprecated unused in schema-serde mode.
|
|
2470
|
+
*
|
|
2471
|
+
*/
|
|
2472
|
+
interface Visitor<T> {
|
|
2473
|
+
messagesList: (value: MessageMetadata[]) => T;
|
|
2474
|
+
_: (name: string, value: any) => T;
|
|
2475
|
+
}
|
|
2476
|
+
}
|
|
2477
|
+
/**
|
|
2478
|
+
* <p>Metadata information associated with this extraction job.</p>
|
|
2479
|
+
* @public
|
|
2480
|
+
*/
|
|
2481
|
+
export interface ExtractionJobMetadata {
|
|
2482
|
+
/**
|
|
2483
|
+
* <p>The unique identifier for the extraction job.</p>
|
|
2484
|
+
* @public
|
|
2485
|
+
*/
|
|
2486
|
+
jobID: string | undefined;
|
|
2487
|
+
/**
|
|
2488
|
+
* <p>The messages associated with the extraction job.</p>
|
|
2489
|
+
* @public
|
|
2490
|
+
*/
|
|
2491
|
+
messages: ExtractionJobMessages | undefined;
|
|
2492
|
+
/**
|
|
2493
|
+
* <p>The current status of the extraction job.</p>
|
|
2494
|
+
* @public
|
|
2495
|
+
*/
|
|
2496
|
+
status?: ExtractionJobStatus | undefined;
|
|
2497
|
+
/**
|
|
2498
|
+
* <p>The cause of failure, if the job did not complete successfully.</p>
|
|
2499
|
+
* @public
|
|
2500
|
+
*/
|
|
2501
|
+
failureReason?: string | undefined;
|
|
2502
|
+
/**
|
|
2503
|
+
* <p>The identifier of the memory strategy for this extraction job.</p>
|
|
2504
|
+
* @public
|
|
2505
|
+
*/
|
|
2506
|
+
strategyId?: string | undefined;
|
|
2507
|
+
/**
|
|
2508
|
+
* <p>The identifier of the session for this extraction job.</p>
|
|
2509
|
+
* @public
|
|
2510
|
+
*/
|
|
2511
|
+
sessionId?: string | undefined;
|
|
2512
|
+
/**
|
|
2513
|
+
* <p>The identifier of the actor for this extraction job.</p>
|
|
2514
|
+
* @public
|
|
2515
|
+
*/
|
|
2516
|
+
actorId?: string | undefined;
|
|
2517
|
+
}
|
|
2518
|
+
/**
|
|
2519
|
+
* @public
|
|
2520
|
+
*/
|
|
2521
|
+
export interface ListMemoryExtractionJobsOutput {
|
|
2522
|
+
/**
|
|
2523
|
+
* <p>List of extraction job metadata matching the specified criteria.</p>
|
|
2524
|
+
* @public
|
|
2525
|
+
*/
|
|
2526
|
+
jobs: ExtractionJobMetadata[] | undefined;
|
|
2527
|
+
/**
|
|
2528
|
+
* <p>Token to retrieve the next page of results, if available.</p>
|
|
2529
|
+
* @public
|
|
2530
|
+
*/
|
|
2531
|
+
nextToken?: string | undefined;
|
|
2532
|
+
}
|
|
2377
2533
|
/**
|
|
2378
2534
|
* @public
|
|
2379
2535
|
*/
|
|
@@ -2394,7 +2550,7 @@ export interface ListMemoryRecordsInput {
|
|
|
2394
2550
|
*/
|
|
2395
2551
|
memoryStrategyId?: string | undefined;
|
|
2396
2552
|
/**
|
|
2397
|
-
* <p>The maximum number of results to return in a single call.
|
|
2553
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
2398
2554
|
* @public
|
|
2399
2555
|
*/
|
|
2400
2556
|
maxResults?: number | undefined;
|
|
@@ -2465,12 +2621,12 @@ export interface ListSessionsInput {
|
|
|
2465
2621
|
*/
|
|
2466
2622
|
memoryId: string | undefined;
|
|
2467
2623
|
/**
|
|
2468
|
-
* <p>The identifier of the actor for which to list sessions.
|
|
2624
|
+
* <p>The identifier of the actor for which to list sessions. </p>
|
|
2469
2625
|
* @public
|
|
2470
2626
|
*/
|
|
2471
2627
|
actorId: string | undefined;
|
|
2472
2628
|
/**
|
|
2473
|
-
* <p>The maximum number of results to return in a single call.
|
|
2629
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
2474
2630
|
* @public
|
|
2475
2631
|
*/
|
|
2476
2632
|
maxResults?: number | undefined;
|
|
@@ -2547,7 +2703,7 @@ export interface RetrieveMemoryRecordsInput {
|
|
|
2547
2703
|
*/
|
|
2548
2704
|
memoryId: string | undefined;
|
|
2549
2705
|
/**
|
|
2550
|
-
* <p>The namespace to filter memory records by
|
|
2706
|
+
* <p>The namespace to filter memory records by.</p>
|
|
2551
2707
|
* @public
|
|
2552
2708
|
*/
|
|
2553
2709
|
namespace: string | undefined;
|
|
@@ -2562,7 +2718,7 @@ export interface RetrieveMemoryRecordsInput {
|
|
|
2562
2718
|
*/
|
|
2563
2719
|
nextToken?: string | undefined;
|
|
2564
2720
|
/**
|
|
2565
|
-
* <p>The maximum number of results to return in a single call.
|
|
2721
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
2566
2722
|
* @public
|
|
2567
2723
|
*/
|
|
2568
2724
|
maxResults?: number | undefined;
|
|
@@ -2582,3 +2738,44 @@ export interface RetrieveMemoryRecordsOutput {
|
|
|
2582
2738
|
*/
|
|
2583
2739
|
nextToken?: string | undefined;
|
|
2584
2740
|
}
|
|
2741
|
+
/**
|
|
2742
|
+
* <p>Represents the metadata of a memory extraction job such as the message identifiers that compose this job.</p>
|
|
2743
|
+
* @public
|
|
2744
|
+
*/
|
|
2745
|
+
export interface ExtractionJob {
|
|
2746
|
+
/**
|
|
2747
|
+
* <p>The unique identifier of the extraction job.</p>
|
|
2748
|
+
* @public
|
|
2749
|
+
*/
|
|
2750
|
+
jobId: string | undefined;
|
|
2751
|
+
}
|
|
2752
|
+
/**
|
|
2753
|
+
* @public
|
|
2754
|
+
*/
|
|
2755
|
+
export interface StartMemoryExtractionJobInput {
|
|
2756
|
+
/**
|
|
2757
|
+
* <p>The unique identifier of the memory for which to start extraction jobs.</p>
|
|
2758
|
+
* @public
|
|
2759
|
+
*/
|
|
2760
|
+
memoryId: string | undefined;
|
|
2761
|
+
/**
|
|
2762
|
+
* <p>Extraction job to start in this operation.</p>
|
|
2763
|
+
* @public
|
|
2764
|
+
*/
|
|
2765
|
+
extractionJob: ExtractionJob | undefined;
|
|
2766
|
+
/**
|
|
2767
|
+
* <p>A unique, case-sensitive identifier to ensure idempotent processing of the request.</p>
|
|
2768
|
+
* @public
|
|
2769
|
+
*/
|
|
2770
|
+
clientToken?: string | undefined;
|
|
2771
|
+
}
|
|
2772
|
+
/**
|
|
2773
|
+
* @public
|
|
2774
|
+
*/
|
|
2775
|
+
export interface StartMemoryExtractionJobOutput {
|
|
2776
|
+
/**
|
|
2777
|
+
* <p>Extraction Job ID that was attempted to start.</p>
|
|
2778
|
+
* @public
|
|
2779
|
+
*/
|
|
2780
|
+
jobId: string | undefined;
|
|
2781
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMemoryExtractionJobsCommandInput, ListMemoryExtractionJobsCommandOutput } from "../commands/ListMemoryExtractionJobsCommand";
|
|
3
|
+
import { BedrockAgentCorePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListMemoryExtractionJobs: (config: BedrockAgentCorePaginationConfiguration, input: ListMemoryExtractionJobsCommandInput, ...rest: any[]) => Paginator<ListMemoryExtractionJobsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListActorsPaginator";
|
|
3
3
|
export * from "./ListEventsPaginator";
|
|
4
|
+
export * from "./ListMemoryExtractionJobsPaginator";
|
|
4
5
|
export * from "./ListMemoryRecordsPaginator";
|
|
5
6
|
export * from "./ListSessionsPaginator";
|
|
6
7
|
export * from "./RetrieveMemoryRecordsPaginator";
|
|
@@ -4,6 +4,7 @@ export declare var ApiKeyType: StaticSimpleSchema;
|
|
|
4
4
|
export declare var AuthorizationUrlType: StaticSimpleSchema;
|
|
5
5
|
export declare var Body: StaticSimpleSchema;
|
|
6
6
|
export declare var CustomRequestValueType: StaticSimpleSchema;
|
|
7
|
+
export declare var Document: StaticSimpleSchema;
|
|
7
8
|
export declare var ResponseStream: StaticSimpleSchema;
|
|
8
9
|
export declare var SensitiveString: StaticSimpleSchema;
|
|
9
10
|
export declare var State: StaticSimpleSchema;
|
|
@@ -38,6 +39,9 @@ export declare var DeleteMemoryRecordInput: StaticStructureSchema;
|
|
|
38
39
|
export declare var DeleteMemoryRecordOutput: StaticStructureSchema;
|
|
39
40
|
export declare var Event: StaticStructureSchema;
|
|
40
41
|
export declare var EventMetadataFilterExpression: StaticStructureSchema;
|
|
42
|
+
export declare var ExtractionJob: StaticStructureSchema;
|
|
43
|
+
export declare var ExtractionJobFilterInput: StaticStructureSchema;
|
|
44
|
+
export declare var ExtractionJobMetadata: StaticStructureSchema;
|
|
41
45
|
export declare var FilterInput: StaticStructureSchema;
|
|
42
46
|
export declare var GetAgentCardRequest: StaticStructureSchema;
|
|
43
47
|
export declare var GetAgentCardResponse: StaticStructureSchema;
|
|
@@ -74,6 +78,8 @@ export declare var ListCodeInterpreterSessionsRequest: StaticStructureSchema;
|
|
|
74
78
|
export declare var ListCodeInterpreterSessionsResponse: StaticStructureSchema;
|
|
75
79
|
export declare var ListEventsInput: StaticStructureSchema;
|
|
76
80
|
export declare var ListEventsOutput: StaticStructureSchema;
|
|
81
|
+
export declare var ListMemoryExtractionJobsInput: StaticStructureSchema;
|
|
82
|
+
export declare var ListMemoryExtractionJobsOutput: StaticStructureSchema;
|
|
77
83
|
export declare var ListMemoryRecordsInput: StaticStructureSchema;
|
|
78
84
|
export declare var ListMemoryRecordsOutput: StaticStructureSchema;
|
|
79
85
|
export declare var ListSessionsInput: StaticStructureSchema;
|
|
@@ -85,6 +91,7 @@ export declare var MemoryRecordDeleteInput: StaticStructureSchema;
|
|
|
85
91
|
export declare var MemoryRecordOutput: StaticStructureSchema;
|
|
86
92
|
export declare var MemoryRecordSummary: StaticStructureSchema;
|
|
87
93
|
export declare var MemoryRecordUpdateInput: StaticStructureSchema;
|
|
94
|
+
export declare var MessageMetadata: StaticStructureSchema;
|
|
88
95
|
export declare var ResourceContent: StaticStructureSchema;
|
|
89
96
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
90
97
|
export declare var RetrieveMemoryRecordsInput: StaticStructureSchema;
|
|
@@ -98,6 +105,8 @@ export declare var StartBrowserSessionRequest: StaticStructureSchema;
|
|
|
98
105
|
export declare var StartBrowserSessionResponse: StaticStructureSchema;
|
|
99
106
|
export declare var StartCodeInterpreterSessionRequest: StaticStructureSchema;
|
|
100
107
|
export declare var StartCodeInterpreterSessionResponse: StaticStructureSchema;
|
|
108
|
+
export declare var StartMemoryExtractionJobInput: StaticStructureSchema;
|
|
109
|
+
export declare var StartMemoryExtractionJobOutput: StaticStructureSchema;
|
|
101
110
|
export declare var StopBrowserSessionRequest: StaticStructureSchema;
|
|
102
111
|
export declare var StopBrowserSessionResponse: StaticStructureSchema;
|
|
103
112
|
export declare var StopCodeInterpreterSessionRequest: StaticStructureSchema;
|
|
@@ -122,12 +131,14 @@ export declare var CodeInterpreterSessionSummaries: StaticListSchema;
|
|
|
122
131
|
export declare var ContentBlockList: StaticListSchema;
|
|
123
132
|
export declare var EventList: StaticListSchema;
|
|
124
133
|
export declare var EventMetadataFilterList: StaticListSchema;
|
|
134
|
+
export declare var ExtractionJobMetadataList: StaticListSchema;
|
|
125
135
|
export declare var InputContentBlockList: StaticListSchema;
|
|
126
136
|
export declare var MemoryRecordsCreateInputList: StaticListSchema;
|
|
127
137
|
export declare var MemoryRecordsDeleteInputList: StaticListSchema;
|
|
128
138
|
export declare var MemoryRecordsOutputList: StaticListSchema;
|
|
129
139
|
export declare var MemoryRecordSummaryList: StaticListSchema;
|
|
130
140
|
export declare var MemoryRecordsUpdateInputList: StaticListSchema;
|
|
141
|
+
export declare var MessagesList: StaticListSchema;
|
|
131
142
|
export declare var NamespacesList: number;
|
|
132
143
|
export declare var PayloadTypeList: StaticListSchema;
|
|
133
144
|
export declare var ScopesListType: number;
|
|
@@ -138,6 +149,7 @@ export declare var CustomRequestParametersType: StaticMapSchema;
|
|
|
138
149
|
export declare var MetadataMap: StaticMapSchema;
|
|
139
150
|
export declare var CodeInterpreterStreamOutput: StaticStructureSchema;
|
|
140
151
|
export declare var Content: StaticStructureSchema;
|
|
152
|
+
export declare var ExtractionJobMessages: StaticStructureSchema;
|
|
141
153
|
export declare var LeftExpression: StaticStructureSchema;
|
|
142
154
|
export declare var MemoryContent: StaticStructureSchema;
|
|
143
155
|
export declare var MetadataValue: StaticStructureSchema;
|
|
@@ -168,11 +180,13 @@ export declare var ListActors: StaticOperationSchema;
|
|
|
168
180
|
export declare var ListBrowserSessions: StaticOperationSchema;
|
|
169
181
|
export declare var ListCodeInterpreterSessions: StaticOperationSchema;
|
|
170
182
|
export declare var ListEvents: StaticOperationSchema;
|
|
183
|
+
export declare var ListMemoryExtractionJobs: StaticOperationSchema;
|
|
171
184
|
export declare var ListMemoryRecords: StaticOperationSchema;
|
|
172
185
|
export declare var ListSessions: StaticOperationSchema;
|
|
173
186
|
export declare var RetrieveMemoryRecords: StaticOperationSchema;
|
|
174
187
|
export declare var StartBrowserSession: StaticOperationSchema;
|
|
175
188
|
export declare var StartCodeInterpreterSession: StaticOperationSchema;
|
|
189
|
+
export declare var StartMemoryExtractionJob: StaticOperationSchema;
|
|
176
190
|
export declare var StopBrowserSession: StaticOperationSchema;
|
|
177
191
|
export declare var StopCodeInterpreterSession: StaticOperationSchema;
|
|
178
192
|
export declare var StopRuntimeSession: StaticOperationSchema;
|
|
@@ -92,6 +92,10 @@ import {
|
|
|
92
92
|
ListEventsCommandInput,
|
|
93
93
|
ListEventsCommandOutput,
|
|
94
94
|
} from "./commands/ListEventsCommand";
|
|
95
|
+
import {
|
|
96
|
+
ListMemoryExtractionJobsCommandInput,
|
|
97
|
+
ListMemoryExtractionJobsCommandOutput,
|
|
98
|
+
} from "./commands/ListMemoryExtractionJobsCommand";
|
|
95
99
|
import {
|
|
96
100
|
ListMemoryRecordsCommandInput,
|
|
97
101
|
ListMemoryRecordsCommandOutput,
|
|
@@ -112,6 +116,10 @@ import {
|
|
|
112
116
|
StartCodeInterpreterSessionCommandInput,
|
|
113
117
|
StartCodeInterpreterSessionCommandOutput,
|
|
114
118
|
} from "./commands/StartCodeInterpreterSessionCommand";
|
|
119
|
+
import {
|
|
120
|
+
StartMemoryExtractionJobCommandInput,
|
|
121
|
+
StartMemoryExtractionJobCommandOutput,
|
|
122
|
+
} from "./commands/StartMemoryExtractionJobCommand";
|
|
115
123
|
import {
|
|
116
124
|
StopBrowserSessionCommandInput,
|
|
117
125
|
StopBrowserSessionCommandOutput,
|
|
@@ -428,6 +436,19 @@ export interface BedrockAgentCore {
|
|
|
428
436
|
options: __HttpHandlerOptions,
|
|
429
437
|
cb: (err: any, data?: ListEventsCommandOutput) => void
|
|
430
438
|
): void;
|
|
439
|
+
listMemoryExtractionJobs(
|
|
440
|
+
args: ListMemoryExtractionJobsCommandInput,
|
|
441
|
+
options?: __HttpHandlerOptions
|
|
442
|
+
): Promise<ListMemoryExtractionJobsCommandOutput>;
|
|
443
|
+
listMemoryExtractionJobs(
|
|
444
|
+
args: ListMemoryExtractionJobsCommandInput,
|
|
445
|
+
cb: (err: any, data?: ListMemoryExtractionJobsCommandOutput) => void
|
|
446
|
+
): void;
|
|
447
|
+
listMemoryExtractionJobs(
|
|
448
|
+
args: ListMemoryExtractionJobsCommandInput,
|
|
449
|
+
options: __HttpHandlerOptions,
|
|
450
|
+
cb: (err: any, data?: ListMemoryExtractionJobsCommandOutput) => void
|
|
451
|
+
): void;
|
|
431
452
|
listMemoryRecords(
|
|
432
453
|
args: ListMemoryRecordsCommandInput,
|
|
433
454
|
options?: __HttpHandlerOptions
|
|
@@ -493,6 +514,19 @@ export interface BedrockAgentCore {
|
|
|
493
514
|
options: __HttpHandlerOptions,
|
|
494
515
|
cb: (err: any, data?: StartCodeInterpreterSessionCommandOutput) => void
|
|
495
516
|
): void;
|
|
517
|
+
startMemoryExtractionJob(
|
|
518
|
+
args: StartMemoryExtractionJobCommandInput,
|
|
519
|
+
options?: __HttpHandlerOptions
|
|
520
|
+
): Promise<StartMemoryExtractionJobCommandOutput>;
|
|
521
|
+
startMemoryExtractionJob(
|
|
522
|
+
args: StartMemoryExtractionJobCommandInput,
|
|
523
|
+
cb: (err: any, data?: StartMemoryExtractionJobCommandOutput) => void
|
|
524
|
+
): void;
|
|
525
|
+
startMemoryExtractionJob(
|
|
526
|
+
args: StartMemoryExtractionJobCommandInput,
|
|
527
|
+
options: __HttpHandlerOptions,
|
|
528
|
+
cb: (err: any, data?: StartMemoryExtractionJobCommandOutput) => void
|
|
529
|
+
): void;
|
|
496
530
|
stopBrowserSession(
|
|
497
531
|
args: StopBrowserSessionCommandInput,
|
|
498
532
|
options?: __HttpHandlerOptions
|
|
@@ -146,6 +146,10 @@ import {
|
|
|
146
146
|
ListEventsCommandInput,
|
|
147
147
|
ListEventsCommandOutput,
|
|
148
148
|
} from "./commands/ListEventsCommand";
|
|
149
|
+
import {
|
|
150
|
+
ListMemoryExtractionJobsCommandInput,
|
|
151
|
+
ListMemoryExtractionJobsCommandOutput,
|
|
152
|
+
} from "./commands/ListMemoryExtractionJobsCommand";
|
|
149
153
|
import {
|
|
150
154
|
ListMemoryRecordsCommandInput,
|
|
151
155
|
ListMemoryRecordsCommandOutput,
|
|
@@ -166,6 +170,10 @@ import {
|
|
|
166
170
|
StartCodeInterpreterSessionCommandInput,
|
|
167
171
|
StartCodeInterpreterSessionCommandOutput,
|
|
168
172
|
} from "./commands/StartCodeInterpreterSessionCommand";
|
|
173
|
+
import {
|
|
174
|
+
StartMemoryExtractionJobCommandInput,
|
|
175
|
+
StartMemoryExtractionJobCommandOutput,
|
|
176
|
+
} from "./commands/StartMemoryExtractionJobCommand";
|
|
169
177
|
import {
|
|
170
178
|
StopBrowserSessionCommandInput,
|
|
171
179
|
StopBrowserSessionCommandOutput,
|
|
@@ -213,11 +221,13 @@ export type ServiceInputTypes =
|
|
|
213
221
|
| ListBrowserSessionsCommandInput
|
|
214
222
|
| ListCodeInterpreterSessionsCommandInput
|
|
215
223
|
| ListEventsCommandInput
|
|
224
|
+
| ListMemoryExtractionJobsCommandInput
|
|
216
225
|
| ListMemoryRecordsCommandInput
|
|
217
226
|
| ListSessionsCommandInput
|
|
218
227
|
| RetrieveMemoryRecordsCommandInput
|
|
219
228
|
| StartBrowserSessionCommandInput
|
|
220
229
|
| StartCodeInterpreterSessionCommandInput
|
|
230
|
+
| StartMemoryExtractionJobCommandInput
|
|
221
231
|
| StopBrowserSessionCommandInput
|
|
222
232
|
| StopCodeInterpreterSessionCommandInput
|
|
223
233
|
| StopRuntimeSessionCommandInput
|
|
@@ -246,11 +256,13 @@ export type ServiceOutputTypes =
|
|
|
246
256
|
| ListBrowserSessionsCommandOutput
|
|
247
257
|
| ListCodeInterpreterSessionsCommandOutput
|
|
248
258
|
| ListEventsCommandOutput
|
|
259
|
+
| ListMemoryExtractionJobsCommandOutput
|
|
249
260
|
| ListMemoryRecordsCommandOutput
|
|
250
261
|
| ListSessionsCommandOutput
|
|
251
262
|
| RetrieveMemoryRecordsCommandOutput
|
|
252
263
|
| StartBrowserSessionCommandOutput
|
|
253
264
|
| StartCodeInterpreterSessionCommandOutput
|
|
265
|
+
| StartMemoryExtractionJobCommandOutput
|
|
254
266
|
| StopBrowserSessionCommandOutput
|
|
255
267
|
| StopCodeInterpreterSessionCommandOutput
|
|
256
268
|
| StopRuntimeSessionCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreClient";
|
|
8
|
+
import {
|
|
9
|
+
ListMemoryExtractionJobsInput,
|
|
10
|
+
ListMemoryExtractionJobsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListMemoryExtractionJobsCommandInput
|
|
15
|
+
extends ListMemoryExtractionJobsInput {}
|
|
16
|
+
export interface ListMemoryExtractionJobsCommandOutput
|
|
17
|
+
extends ListMemoryExtractionJobsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListMemoryExtractionJobsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListMemoryExtractionJobsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListMemoryExtractionJobsCommandInput,
|
|
24
|
+
ListMemoryExtractionJobsCommandOutput,
|
|
25
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListMemoryExtractionJobsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListMemoryExtractionJobsCommandInput,
|
|
33
|
+
ListMemoryExtractionJobsCommandOutput,
|
|
34
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListMemoryExtractionJobsCommand extends ListMemoryExtractionJobsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListMemoryExtractionJobsInput;
|
|
44
|
+
output: ListMemoryExtractionJobsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListMemoryExtractionJobsCommandInput;
|
|
48
|
+
output: ListMemoryExtractionJobsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreClient";
|
|
8
|
+
import {
|
|
9
|
+
StartMemoryExtractionJobInput,
|
|
10
|
+
StartMemoryExtractionJobOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartMemoryExtractionJobCommandInput
|
|
15
|
+
extends StartMemoryExtractionJobInput {}
|
|
16
|
+
export interface StartMemoryExtractionJobCommandOutput
|
|
17
|
+
extends StartMemoryExtractionJobOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartMemoryExtractionJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartMemoryExtractionJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartMemoryExtractionJobCommandInput,
|
|
24
|
+
StartMemoryExtractionJobCommandOutput,
|
|
25
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StartMemoryExtractionJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartMemoryExtractionJobCommandInput,
|
|
33
|
+
StartMemoryExtractionJobCommandOutput,
|
|
34
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartMemoryExtractionJobCommand extends StartMemoryExtractionJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartMemoryExtractionJobInput;
|
|
44
|
+
output: StartMemoryExtractionJobOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartMemoryExtractionJobCommandInput;
|
|
48
|
+
output: StartMemoryExtractionJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -21,11 +21,13 @@ export * from "./ListActorsCommand";
|
|
|
21
21
|
export * from "./ListBrowserSessionsCommand";
|
|
22
22
|
export * from "./ListCodeInterpreterSessionsCommand";
|
|
23
23
|
export * from "./ListEventsCommand";
|
|
24
|
+
export * from "./ListMemoryExtractionJobsCommand";
|
|
24
25
|
export * from "./ListMemoryRecordsCommand";
|
|
25
26
|
export * from "./ListSessionsCommand";
|
|
26
27
|
export * from "./RetrieveMemoryRecordsCommand";
|
|
27
28
|
export * from "./StartBrowserSessionCommand";
|
|
28
29
|
export * from "./StartCodeInterpreterSessionCommand";
|
|
30
|
+
export * from "./StartMemoryExtractionJobCommand";
|
|
29
31
|
export * from "./StopBrowserSessionCommand";
|
|
30
32
|
export * from "./StopCodeInterpreterSessionCommand";
|
|
31
33
|
export * from "./StopRuntimeSessionCommand";
|
|
@@ -96,3 +96,8 @@ export declare const OperatorType: {
|
|
|
96
96
|
readonly NOT_EXISTS: "NOT_EXISTS";
|
|
97
97
|
};
|
|
98
98
|
export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
|
|
99
|
+
export declare const ExtractionJobStatus: {
|
|
100
|
+
readonly FAILED: "FAILED";
|
|
101
|
+
};
|
|
102
|
+
export type ExtractionJobStatus =
|
|
103
|
+
(typeof ExtractionJobStatus)[keyof typeof ExtractionJobStatus];
|