@aws-sdk/client-bedrock-agentcore 3.901.0 → 3.906.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 +40 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +2775 -2645
- package/dist-es/BedrockAgentCore.js +10 -0
- package/dist-es/commands/BatchCreateMemoryRecordsCommand.js +23 -0
- package/dist-es/commands/BatchDeleteMemoryRecordsCommand.js +22 -0
- package/dist-es/commands/BatchUpdateMemoryRecordsCommand.js +23 -0
- package/dist-es/commands/GetAgentCardCommand.js +22 -0
- package/dist-es/commands/StopRuntimeSessionCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +111 -56
- package/dist-es/protocols/Aws_restJson1.js +193 -6
- package/dist-types/BedrockAgentCore.d.ts +35 -0
- package/dist-types/BedrockAgentCoreClient.d.ts +7 -2
- package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +123 -0
- package/dist-types/commands/BatchDeleteMemoryRecordsCommand.d.ts +114 -0
- package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +122 -0
- package/dist-types/commands/CreateEventCommand.d.ts +10 -0
- package/dist-types/commands/GetAgentCardCommand.d.ts +99 -0
- package/dist-types/commands/GetEventCommand.d.ts +5 -0
- package/dist-types/commands/GetResourceApiKeyCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkloadAccessTokenCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +1 -1
- package/dist-types/commands/ListEventsCommand.d.ts +18 -0
- package/dist-types/commands/StopRuntimeSessionCommand.d.ts +105 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +632 -186
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/BedrockAgentCore.d.ts +85 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/BatchCreateMemoryRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchDeleteMemoryRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchUpdateMemoryRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAgentCardCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StopRuntimeSessionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +225 -70
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +5 -5
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { EventStreamSerdeContext as __EventStreamSerdeContext, SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { BatchCreateMemoryRecordsCommandInput, BatchCreateMemoryRecordsCommandOutput } from "../commands/BatchCreateMemoryRecordsCommand";
|
|
4
|
+
import { BatchDeleteMemoryRecordsCommandInput, BatchDeleteMemoryRecordsCommandOutput } from "../commands/BatchDeleteMemoryRecordsCommand";
|
|
5
|
+
import { BatchUpdateMemoryRecordsCommandInput, BatchUpdateMemoryRecordsCommandOutput } from "../commands/BatchUpdateMemoryRecordsCommand";
|
|
3
6
|
import { CreateEventCommandInput, CreateEventCommandOutput } from "../commands/CreateEventCommand";
|
|
4
7
|
import { DeleteEventCommandInput, DeleteEventCommandOutput } from "../commands/DeleteEventCommand";
|
|
5
8
|
import { DeleteMemoryRecordCommandInput, DeleteMemoryRecordCommandOutput } from "../commands/DeleteMemoryRecordCommand";
|
|
9
|
+
import { GetAgentCardCommandInput, GetAgentCardCommandOutput } from "../commands/GetAgentCardCommand";
|
|
6
10
|
import { GetBrowserSessionCommandInput, GetBrowserSessionCommandOutput } from "../commands/GetBrowserSessionCommand";
|
|
7
11
|
import { GetCodeInterpreterSessionCommandInput, GetCodeInterpreterSessionCommandOutput } from "../commands/GetCodeInterpreterSessionCommand";
|
|
8
12
|
import { GetEventCommandInput, GetEventCommandOutput } from "../commands/GetEventCommand";
|
|
@@ -25,7 +29,20 @@ import { StartBrowserSessionCommandInput, StartBrowserSessionCommandOutput } fro
|
|
|
25
29
|
import { StartCodeInterpreterSessionCommandInput, StartCodeInterpreterSessionCommandOutput } from "../commands/StartCodeInterpreterSessionCommand";
|
|
26
30
|
import { StopBrowserSessionCommandInput, StopBrowserSessionCommandOutput } from "../commands/StopBrowserSessionCommand";
|
|
27
31
|
import { StopCodeInterpreterSessionCommandInput, StopCodeInterpreterSessionCommandOutput } from "../commands/StopCodeInterpreterSessionCommand";
|
|
32
|
+
import { StopRuntimeSessionCommandInput, StopRuntimeSessionCommandOutput } from "../commands/StopRuntimeSessionCommand";
|
|
28
33
|
import { UpdateBrowserStreamCommandInput, UpdateBrowserStreamCommandOutput } from "../commands/UpdateBrowserStreamCommand";
|
|
34
|
+
/**
|
|
35
|
+
* serializeAws_restJson1BatchCreateMemoryRecordsCommand
|
|
36
|
+
*/
|
|
37
|
+
export declare const se_BatchCreateMemoryRecordsCommand: (input: BatchCreateMemoryRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_restJson1BatchDeleteMemoryRecordsCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_BatchDeleteMemoryRecordsCommand: (input: BatchDeleteMemoryRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_restJson1BatchUpdateMemoryRecordsCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_BatchUpdateMemoryRecordsCommand: (input: BatchUpdateMemoryRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
46
|
/**
|
|
30
47
|
* serializeAws_restJson1CreateEventCommand
|
|
31
48
|
*/
|
|
@@ -38,6 +55,10 @@ export declare const se_DeleteEventCommand: (input: DeleteEventCommandInput, con
|
|
|
38
55
|
* serializeAws_restJson1DeleteMemoryRecordCommand
|
|
39
56
|
*/
|
|
40
57
|
export declare const se_DeleteMemoryRecordCommand: (input: DeleteMemoryRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* serializeAws_restJson1GetAgentCardCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const se_GetAgentCardCommand: (input: GetAgentCardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
62
|
/**
|
|
42
63
|
* serializeAws_restJson1GetBrowserSessionCommand
|
|
43
64
|
*/
|
|
@@ -126,10 +147,26 @@ export declare const se_StopBrowserSessionCommand: (input: StopBrowserSessionCom
|
|
|
126
147
|
* serializeAws_restJson1StopCodeInterpreterSessionCommand
|
|
127
148
|
*/
|
|
128
149
|
export declare const se_StopCodeInterpreterSessionCommand: (input: StopCodeInterpreterSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
/**
|
|
151
|
+
* serializeAws_restJson1StopRuntimeSessionCommand
|
|
152
|
+
*/
|
|
153
|
+
export declare const se_StopRuntimeSessionCommand: (input: StopRuntimeSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
154
|
/**
|
|
130
155
|
* serializeAws_restJson1UpdateBrowserStreamCommand
|
|
131
156
|
*/
|
|
132
157
|
export declare const se_UpdateBrowserStreamCommand: (input: UpdateBrowserStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
158
|
+
/**
|
|
159
|
+
* deserializeAws_restJson1BatchCreateMemoryRecordsCommand
|
|
160
|
+
*/
|
|
161
|
+
export declare const de_BatchCreateMemoryRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCreateMemoryRecordsCommandOutput>;
|
|
162
|
+
/**
|
|
163
|
+
* deserializeAws_restJson1BatchDeleteMemoryRecordsCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const de_BatchDeleteMemoryRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDeleteMemoryRecordsCommandOutput>;
|
|
166
|
+
/**
|
|
167
|
+
* deserializeAws_restJson1BatchUpdateMemoryRecordsCommand
|
|
168
|
+
*/
|
|
169
|
+
export declare const de_BatchUpdateMemoryRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateMemoryRecordsCommandOutput>;
|
|
133
170
|
/**
|
|
134
171
|
* deserializeAws_restJson1CreateEventCommand
|
|
135
172
|
*/
|
|
@@ -142,6 +179,10 @@ export declare const de_DeleteEventCommand: (output: __HttpResponse, context: __
|
|
|
142
179
|
* deserializeAws_restJson1DeleteMemoryRecordCommand
|
|
143
180
|
*/
|
|
144
181
|
export declare const de_DeleteMemoryRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMemoryRecordCommandOutput>;
|
|
182
|
+
/**
|
|
183
|
+
* deserializeAws_restJson1GetAgentCardCommand
|
|
184
|
+
*/
|
|
185
|
+
export declare const de_GetAgentCardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgentCardCommandOutput>;
|
|
145
186
|
/**
|
|
146
187
|
* deserializeAws_restJson1GetBrowserSessionCommand
|
|
147
188
|
*/
|
|
@@ -230,6 +271,10 @@ export declare const de_StopBrowserSessionCommand: (output: __HttpResponse, cont
|
|
|
230
271
|
* deserializeAws_restJson1StopCodeInterpreterSessionCommand
|
|
231
272
|
*/
|
|
232
273
|
export declare const de_StopCodeInterpreterSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCodeInterpreterSessionCommandOutput>;
|
|
274
|
+
/**
|
|
275
|
+
* deserializeAws_restJson1StopRuntimeSessionCommand
|
|
276
|
+
*/
|
|
277
|
+
export declare const de_StopRuntimeSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopRuntimeSessionCommandOutput>;
|
|
233
278
|
/**
|
|
234
279
|
* deserializeAws_restJson1UpdateBrowserStreamCommand
|
|
235
280
|
*/
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { BedrockAgentCoreClient } from "./BedrockAgentCoreClient";
|
|
3
|
+
import {
|
|
4
|
+
BatchCreateMemoryRecordsCommandInput,
|
|
5
|
+
BatchCreateMemoryRecordsCommandOutput,
|
|
6
|
+
} from "./commands/BatchCreateMemoryRecordsCommand";
|
|
7
|
+
import {
|
|
8
|
+
BatchDeleteMemoryRecordsCommandInput,
|
|
9
|
+
BatchDeleteMemoryRecordsCommandOutput,
|
|
10
|
+
} from "./commands/BatchDeleteMemoryRecordsCommand";
|
|
11
|
+
import {
|
|
12
|
+
BatchUpdateMemoryRecordsCommandInput,
|
|
13
|
+
BatchUpdateMemoryRecordsCommandOutput,
|
|
14
|
+
} from "./commands/BatchUpdateMemoryRecordsCommand";
|
|
3
15
|
import {
|
|
4
16
|
CreateEventCommandInput,
|
|
5
17
|
CreateEventCommandOutput,
|
|
@@ -12,6 +24,10 @@ import {
|
|
|
12
24
|
DeleteMemoryRecordCommandInput,
|
|
13
25
|
DeleteMemoryRecordCommandOutput,
|
|
14
26
|
} from "./commands/DeleteMemoryRecordCommand";
|
|
27
|
+
import {
|
|
28
|
+
GetAgentCardCommandInput,
|
|
29
|
+
GetAgentCardCommandOutput,
|
|
30
|
+
} from "./commands/GetAgentCardCommand";
|
|
15
31
|
import {
|
|
16
32
|
GetBrowserSessionCommandInput,
|
|
17
33
|
GetBrowserSessionCommandOutput,
|
|
@@ -100,11 +116,54 @@ import {
|
|
|
100
116
|
StopCodeInterpreterSessionCommandInput,
|
|
101
117
|
StopCodeInterpreterSessionCommandOutput,
|
|
102
118
|
} from "./commands/StopCodeInterpreterSessionCommand";
|
|
119
|
+
import {
|
|
120
|
+
StopRuntimeSessionCommandInput,
|
|
121
|
+
StopRuntimeSessionCommandOutput,
|
|
122
|
+
} from "./commands/StopRuntimeSessionCommand";
|
|
103
123
|
import {
|
|
104
124
|
UpdateBrowserStreamCommandInput,
|
|
105
125
|
UpdateBrowserStreamCommandOutput,
|
|
106
126
|
} from "./commands/UpdateBrowserStreamCommand";
|
|
107
127
|
export interface BedrockAgentCore {
|
|
128
|
+
batchCreateMemoryRecords(
|
|
129
|
+
args: BatchCreateMemoryRecordsCommandInput,
|
|
130
|
+
options?: __HttpHandlerOptions
|
|
131
|
+
): Promise<BatchCreateMemoryRecordsCommandOutput>;
|
|
132
|
+
batchCreateMemoryRecords(
|
|
133
|
+
args: BatchCreateMemoryRecordsCommandInput,
|
|
134
|
+
cb: (err: any, data?: BatchCreateMemoryRecordsCommandOutput) => void
|
|
135
|
+
): void;
|
|
136
|
+
batchCreateMemoryRecords(
|
|
137
|
+
args: BatchCreateMemoryRecordsCommandInput,
|
|
138
|
+
options: __HttpHandlerOptions,
|
|
139
|
+
cb: (err: any, data?: BatchCreateMemoryRecordsCommandOutput) => void
|
|
140
|
+
): void;
|
|
141
|
+
batchDeleteMemoryRecords(
|
|
142
|
+
args: BatchDeleteMemoryRecordsCommandInput,
|
|
143
|
+
options?: __HttpHandlerOptions
|
|
144
|
+
): Promise<BatchDeleteMemoryRecordsCommandOutput>;
|
|
145
|
+
batchDeleteMemoryRecords(
|
|
146
|
+
args: BatchDeleteMemoryRecordsCommandInput,
|
|
147
|
+
cb: (err: any, data?: BatchDeleteMemoryRecordsCommandOutput) => void
|
|
148
|
+
): void;
|
|
149
|
+
batchDeleteMemoryRecords(
|
|
150
|
+
args: BatchDeleteMemoryRecordsCommandInput,
|
|
151
|
+
options: __HttpHandlerOptions,
|
|
152
|
+
cb: (err: any, data?: BatchDeleteMemoryRecordsCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
batchUpdateMemoryRecords(
|
|
155
|
+
args: BatchUpdateMemoryRecordsCommandInput,
|
|
156
|
+
options?: __HttpHandlerOptions
|
|
157
|
+
): Promise<BatchUpdateMemoryRecordsCommandOutput>;
|
|
158
|
+
batchUpdateMemoryRecords(
|
|
159
|
+
args: BatchUpdateMemoryRecordsCommandInput,
|
|
160
|
+
cb: (err: any, data?: BatchUpdateMemoryRecordsCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
batchUpdateMemoryRecords(
|
|
163
|
+
args: BatchUpdateMemoryRecordsCommandInput,
|
|
164
|
+
options: __HttpHandlerOptions,
|
|
165
|
+
cb: (err: any, data?: BatchUpdateMemoryRecordsCommandOutput) => void
|
|
166
|
+
): void;
|
|
108
167
|
createEvent(
|
|
109
168
|
args: CreateEventCommandInput,
|
|
110
169
|
options?: __HttpHandlerOptions
|
|
@@ -144,6 +203,19 @@ export interface BedrockAgentCore {
|
|
|
144
203
|
options: __HttpHandlerOptions,
|
|
145
204
|
cb: (err: any, data?: DeleteMemoryRecordCommandOutput) => void
|
|
146
205
|
): void;
|
|
206
|
+
getAgentCard(
|
|
207
|
+
args: GetAgentCardCommandInput,
|
|
208
|
+
options?: __HttpHandlerOptions
|
|
209
|
+
): Promise<GetAgentCardCommandOutput>;
|
|
210
|
+
getAgentCard(
|
|
211
|
+
args: GetAgentCardCommandInput,
|
|
212
|
+
cb: (err: any, data?: GetAgentCardCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
getAgentCard(
|
|
215
|
+
args: GetAgentCardCommandInput,
|
|
216
|
+
options: __HttpHandlerOptions,
|
|
217
|
+
cb: (err: any, data?: GetAgentCardCommandOutput) => void
|
|
218
|
+
): void;
|
|
147
219
|
getBrowserSession(
|
|
148
220
|
args: GetBrowserSessionCommandInput,
|
|
149
221
|
options?: __HttpHandlerOptions
|
|
@@ -430,6 +502,19 @@ export interface BedrockAgentCore {
|
|
|
430
502
|
options: __HttpHandlerOptions,
|
|
431
503
|
cb: (err: any, data?: StopCodeInterpreterSessionCommandOutput) => void
|
|
432
504
|
): void;
|
|
505
|
+
stopRuntimeSession(
|
|
506
|
+
args: StopRuntimeSessionCommandInput,
|
|
507
|
+
options?: __HttpHandlerOptions
|
|
508
|
+
): Promise<StopRuntimeSessionCommandOutput>;
|
|
509
|
+
stopRuntimeSession(
|
|
510
|
+
args: StopRuntimeSessionCommandInput,
|
|
511
|
+
cb: (err: any, data?: StopRuntimeSessionCommandOutput) => void
|
|
512
|
+
): void;
|
|
513
|
+
stopRuntimeSession(
|
|
514
|
+
args: StopRuntimeSessionCommandInput,
|
|
515
|
+
options: __HttpHandlerOptions,
|
|
516
|
+
cb: (err: any, data?: StopRuntimeSessionCommandOutput) => void
|
|
517
|
+
): void;
|
|
433
518
|
updateBrowserStream(
|
|
434
519
|
args: UpdateBrowserStreamCommandInput,
|
|
435
520
|
options?: __HttpHandlerOptions
|
|
@@ -51,6 +51,18 @@ import {
|
|
|
51
51
|
HttpAuthSchemeInputConfig,
|
|
52
52
|
HttpAuthSchemeResolvedConfig,
|
|
53
53
|
} from "./auth/httpAuthSchemeProvider";
|
|
54
|
+
import {
|
|
55
|
+
BatchCreateMemoryRecordsCommandInput,
|
|
56
|
+
BatchCreateMemoryRecordsCommandOutput,
|
|
57
|
+
} from "./commands/BatchCreateMemoryRecordsCommand";
|
|
58
|
+
import {
|
|
59
|
+
BatchDeleteMemoryRecordsCommandInput,
|
|
60
|
+
BatchDeleteMemoryRecordsCommandOutput,
|
|
61
|
+
} from "./commands/BatchDeleteMemoryRecordsCommand";
|
|
62
|
+
import {
|
|
63
|
+
BatchUpdateMemoryRecordsCommandInput,
|
|
64
|
+
BatchUpdateMemoryRecordsCommandOutput,
|
|
65
|
+
} from "./commands/BatchUpdateMemoryRecordsCommand";
|
|
54
66
|
import {
|
|
55
67
|
CreateEventCommandInput,
|
|
56
68
|
CreateEventCommandOutput,
|
|
@@ -63,6 +75,10 @@ import {
|
|
|
63
75
|
DeleteMemoryRecordCommandInput,
|
|
64
76
|
DeleteMemoryRecordCommandOutput,
|
|
65
77
|
} from "./commands/DeleteMemoryRecordCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetAgentCardCommandInput,
|
|
80
|
+
GetAgentCardCommandOutput,
|
|
81
|
+
} from "./commands/GetAgentCardCommand";
|
|
66
82
|
import {
|
|
67
83
|
GetBrowserSessionCommandInput,
|
|
68
84
|
GetBrowserSessionCommandOutput,
|
|
@@ -151,6 +167,10 @@ import {
|
|
|
151
167
|
StopCodeInterpreterSessionCommandInput,
|
|
152
168
|
StopCodeInterpreterSessionCommandOutput,
|
|
153
169
|
} from "./commands/StopCodeInterpreterSessionCommand";
|
|
170
|
+
import {
|
|
171
|
+
StopRuntimeSessionCommandInput,
|
|
172
|
+
StopRuntimeSessionCommandOutput,
|
|
173
|
+
} from "./commands/StopRuntimeSessionCommand";
|
|
154
174
|
import {
|
|
155
175
|
UpdateBrowserStreamCommandInput,
|
|
156
176
|
UpdateBrowserStreamCommandOutput,
|
|
@@ -163,9 +183,13 @@ import {
|
|
|
163
183
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
164
184
|
export { __Client };
|
|
165
185
|
export type ServiceInputTypes =
|
|
186
|
+
| BatchCreateMemoryRecordsCommandInput
|
|
187
|
+
| BatchDeleteMemoryRecordsCommandInput
|
|
188
|
+
| BatchUpdateMemoryRecordsCommandInput
|
|
166
189
|
| CreateEventCommandInput
|
|
167
190
|
| DeleteEventCommandInput
|
|
168
191
|
| DeleteMemoryRecordCommandInput
|
|
192
|
+
| GetAgentCardCommandInput
|
|
169
193
|
| GetBrowserSessionCommandInput
|
|
170
194
|
| GetCodeInterpreterSessionCommandInput
|
|
171
195
|
| GetEventCommandInput
|
|
@@ -188,11 +212,16 @@ export type ServiceInputTypes =
|
|
|
188
212
|
| StartCodeInterpreterSessionCommandInput
|
|
189
213
|
| StopBrowserSessionCommandInput
|
|
190
214
|
| StopCodeInterpreterSessionCommandInput
|
|
215
|
+
| StopRuntimeSessionCommandInput
|
|
191
216
|
| UpdateBrowserStreamCommandInput;
|
|
192
217
|
export type ServiceOutputTypes =
|
|
218
|
+
| BatchCreateMemoryRecordsCommandOutput
|
|
219
|
+
| BatchDeleteMemoryRecordsCommandOutput
|
|
220
|
+
| BatchUpdateMemoryRecordsCommandOutput
|
|
193
221
|
| CreateEventCommandOutput
|
|
194
222
|
| DeleteEventCommandOutput
|
|
195
223
|
| DeleteMemoryRecordCommandOutput
|
|
224
|
+
| GetAgentCardCommandOutput
|
|
196
225
|
| GetBrowserSessionCommandOutput
|
|
197
226
|
| GetCodeInterpreterSessionCommandOutput
|
|
198
227
|
| GetEventCommandOutput
|
|
@@ -215,6 +244,7 @@ export type ServiceOutputTypes =
|
|
|
215
244
|
| StartCodeInterpreterSessionCommandOutput
|
|
216
245
|
| StopBrowserSessionCommandOutput
|
|
217
246
|
| StopCodeInterpreterSessionCommandOutput
|
|
247
|
+
| StopRuntimeSessionCommandOutput
|
|
218
248
|
| UpdateBrowserStreamCommandOutput;
|
|
219
249
|
export interface ClientDefaults
|
|
220
250
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -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
|
+
BatchCreateMemoryRecordsInput,
|
|
10
|
+
BatchCreateMemoryRecordsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchCreateMemoryRecordsCommandInput
|
|
15
|
+
extends BatchCreateMemoryRecordsInput {}
|
|
16
|
+
export interface BatchCreateMemoryRecordsCommandOutput
|
|
17
|
+
extends BatchCreateMemoryRecordsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchCreateMemoryRecordsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchCreateMemoryRecordsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchCreateMemoryRecordsCommandInput,
|
|
24
|
+
BatchCreateMemoryRecordsCommandOutput,
|
|
25
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchCreateMemoryRecordsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchCreateMemoryRecordsCommandInput,
|
|
33
|
+
BatchCreateMemoryRecordsCommandOutput,
|
|
34
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchCreateMemoryRecordsCommand extends BatchCreateMemoryRecordsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchCreateMemoryRecordsInput;
|
|
44
|
+
output: BatchCreateMemoryRecordsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchCreateMemoryRecordsCommandInput;
|
|
48
|
+
output: BatchCreateMemoryRecordsCommandOutput;
|
|
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
|
+
BatchDeleteMemoryRecordsInput,
|
|
10
|
+
BatchDeleteMemoryRecordsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchDeleteMemoryRecordsCommandInput
|
|
15
|
+
extends BatchDeleteMemoryRecordsInput {}
|
|
16
|
+
export interface BatchDeleteMemoryRecordsCommandOutput
|
|
17
|
+
extends BatchDeleteMemoryRecordsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchDeleteMemoryRecordsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchDeleteMemoryRecordsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchDeleteMemoryRecordsCommandInput,
|
|
24
|
+
BatchDeleteMemoryRecordsCommandOutput,
|
|
25
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchDeleteMemoryRecordsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchDeleteMemoryRecordsCommandInput,
|
|
33
|
+
BatchDeleteMemoryRecordsCommandOutput,
|
|
34
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchDeleteMemoryRecordsCommand extends BatchDeleteMemoryRecordsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchDeleteMemoryRecordsInput;
|
|
44
|
+
output: BatchDeleteMemoryRecordsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchDeleteMemoryRecordsCommandInput;
|
|
48
|
+
output: BatchDeleteMemoryRecordsCommandOutput;
|
|
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
|
+
BatchUpdateMemoryRecordsInput,
|
|
10
|
+
BatchUpdateMemoryRecordsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchUpdateMemoryRecordsCommandInput
|
|
15
|
+
extends BatchUpdateMemoryRecordsInput {}
|
|
16
|
+
export interface BatchUpdateMemoryRecordsCommandOutput
|
|
17
|
+
extends BatchUpdateMemoryRecordsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchUpdateMemoryRecordsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchUpdateMemoryRecordsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchUpdateMemoryRecordsCommandInput,
|
|
24
|
+
BatchUpdateMemoryRecordsCommandOutput,
|
|
25
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchUpdateMemoryRecordsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchUpdateMemoryRecordsCommandInput,
|
|
33
|
+
BatchUpdateMemoryRecordsCommandOutput,
|
|
34
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchUpdateMemoryRecordsCommand extends BatchUpdateMemoryRecordsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchUpdateMemoryRecordsInput;
|
|
44
|
+
output: BatchUpdateMemoryRecordsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchUpdateMemoryRecordsCommandInput;
|
|
48
|
+
output: BatchUpdateMemoryRecordsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 { GetAgentCardRequest, GetAgentCardResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetAgentCardCommandInput extends GetAgentCardRequest {}
|
|
12
|
+
export interface GetAgentCardCommandOutput
|
|
13
|
+
extends GetAgentCardResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetAgentCardCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetAgentCardCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetAgentCardCommandInput,
|
|
20
|
+
GetAgentCardCommandOutput,
|
|
21
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetAgentCardCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetAgentCardCommandInput,
|
|
29
|
+
GetAgentCardCommandOutput,
|
|
30
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetAgentCardCommand extends GetAgentCardCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetAgentCardRequest;
|
|
40
|
+
output: GetAgentCardResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetAgentCardCommandInput;
|
|
44
|
+
output: GetAgentCardCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -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
|
+
StopRuntimeSessionRequest,
|
|
10
|
+
StopRuntimeSessionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopRuntimeSessionCommandInput
|
|
15
|
+
extends StopRuntimeSessionRequest {}
|
|
16
|
+
export interface StopRuntimeSessionCommandOutput
|
|
17
|
+
extends StopRuntimeSessionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StopRuntimeSessionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StopRuntimeSessionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StopRuntimeSessionCommandInput,
|
|
24
|
+
StopRuntimeSessionCommandOutput,
|
|
25
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StopRuntimeSessionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StopRuntimeSessionCommandInput,
|
|
33
|
+
StopRuntimeSessionCommandOutput,
|
|
34
|
+
BedrockAgentCoreClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StopRuntimeSessionCommand extends StopRuntimeSessionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StopRuntimeSessionRequest;
|
|
44
|
+
output: StopRuntimeSessionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StopRuntimeSessionCommandInput;
|
|
48
|
+
output: StopRuntimeSessionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
export * from "./BatchCreateMemoryRecordsCommand";
|
|
2
|
+
export * from "./BatchDeleteMemoryRecordsCommand";
|
|
3
|
+
export * from "./BatchUpdateMemoryRecordsCommand";
|
|
1
4
|
export * from "./CreateEventCommand";
|
|
2
5
|
export * from "./DeleteEventCommand";
|
|
3
6
|
export * from "./DeleteMemoryRecordCommand";
|
|
7
|
+
export * from "./GetAgentCardCommand";
|
|
4
8
|
export * from "./GetBrowserSessionCommand";
|
|
5
9
|
export * from "./GetCodeInterpreterSessionCommand";
|
|
6
10
|
export * from "./GetEventCommand";
|
|
@@ -23,4 +27,5 @@ export * from "./StartBrowserSessionCommand";
|
|
|
23
27
|
export * from "./StartCodeInterpreterSessionCommand";
|
|
24
28
|
export * from "./StopBrowserSessionCommand";
|
|
25
29
|
export * from "./StopCodeInterpreterSessionCommand";
|
|
30
|
+
export * from "./StopRuntimeSessionCommand";
|
|
26
31
|
export * from "./UpdateBrowserStreamCommand";
|