@aws-sdk/client-bedrock-agentcore 3.928.0 → 3.930.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/dist-cjs/index.js +1843 -2155
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/BedrockAgentCoreClient.js +2 -0
- package/dist-es/commands/BatchCreateMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/BatchDeleteMemoryRecordsCommand.js +3 -9
- package/dist-es/commands/BatchUpdateMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/CompleteResourceTokenAuthCommand.js +3 -10
- package/dist-es/commands/CreateEventCommand.js +3 -10
- package/dist-es/commands/DeleteEventCommand.js +3 -9
- package/dist-es/commands/DeleteMemoryRecordCommand.js +3 -9
- package/dist-es/commands/GetAgentCardCommand.js +3 -9
- package/dist-es/commands/GetBrowserSessionCommand.js +3 -9
- package/dist-es/commands/GetCodeInterpreterSessionCommand.js +3 -9
- package/dist-es/commands/GetEventCommand.js +3 -10
- package/dist-es/commands/GetMemoryRecordCommand.js +3 -10
- package/dist-es/commands/GetResourceApiKeyCommand.js +3 -10
- package/dist-es/commands/GetResourceOauth2TokenCommand.js +3 -10
- package/dist-es/commands/GetWorkloadAccessTokenCommand.js +3 -10
- package/dist-es/commands/GetWorkloadAccessTokenForJWTCommand.js +3 -10
- package/dist-es/commands/GetWorkloadAccessTokenForUserIdCommand.js +3 -10
- package/dist-es/commands/InvokeAgentRuntimeCommand.js +3 -10
- package/dist-es/commands/InvokeCodeInterpreterCommand.js +3 -10
- package/dist-es/commands/ListActorsCommand.js +3 -9
- package/dist-es/commands/ListBrowserSessionsCommand.js +3 -9
- package/dist-es/commands/ListCodeInterpreterSessionsCommand.js +3 -9
- package/dist-es/commands/ListEventsCommand.js +3 -10
- package/dist-es/commands/ListMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/ListSessionsCommand.js +3 -9
- package/dist-es/commands/RetrieveMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/StartBrowserSessionCommand.js +3 -9
- package/dist-es/commands/StartCodeInterpreterSessionCommand.js +3 -9
- package/dist-es/commands/StopBrowserSessionCommand.js +3 -9
- package/dist-es/commands/StopCodeInterpreterSessionCommand.js +3 -9
- package/dist-es/commands/StopRuntimeSessionCommand.js +3 -9
- package/dist-es/commands/UpdateBrowserStreamCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -280
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1756 -0
- package/dist-types/BedrockAgentCoreClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +36 -157
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +179 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -115
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +186 -0
- package/package.json +37 -38
- package/dist-es/protocols/Aws_restJson1.js +0 -1593
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -290
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -393
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var eventstreamSerdeConfigResolver = require('@smithy/eventstream-serde-config-resolver');
|
|
10
11
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
12
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
@@ -15,9 +16,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
16
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
18
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
19
|
-
var core$1 = require('@aws-sdk/core');
|
|
20
|
-
var uuid = require('@smithy/uuid');
|
|
21
19
|
|
|
22
20
|
const resolveClientEndpointParameters = (options) => {
|
|
23
21
|
return Object.assign(options, {
|
|
@@ -94,6 +92,7 @@ class BedrockAgentCoreClient extends smithyClient.Client {
|
|
|
94
92
|
const _config_8 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_7);
|
|
95
93
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
96
94
|
this.config = _config_9;
|
|
95
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
98
97
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
99
98
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -113,14 +112,14 @@ class BedrockAgentCoreClient extends smithyClient.Client {
|
|
|
113
112
|
}
|
|
114
113
|
}
|
|
115
114
|
|
|
116
|
-
class BedrockAgentCoreServiceException extends smithyClient.ServiceException {
|
|
115
|
+
let BedrockAgentCoreServiceException$1 = class BedrockAgentCoreServiceException extends smithyClient.ServiceException {
|
|
117
116
|
constructor(options) {
|
|
118
117
|
super(options);
|
|
119
118
|
Object.setPrototypeOf(this, BedrockAgentCoreServiceException.prototype);
|
|
120
119
|
}
|
|
121
|
-
}
|
|
120
|
+
};
|
|
122
121
|
|
|
123
|
-
class AccessDeniedException extends BedrockAgentCoreServiceException {
|
|
122
|
+
let AccessDeniedException$1 = class AccessDeniedException extends BedrockAgentCoreServiceException$1 {
|
|
124
123
|
name = "AccessDeniedException";
|
|
125
124
|
$fault = "client";
|
|
126
125
|
constructor(opts) {
|
|
@@ -131,8 +130,8 @@ class AccessDeniedException extends BedrockAgentCoreServiceException {
|
|
|
131
130
|
});
|
|
132
131
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
133
132
|
}
|
|
134
|
-
}
|
|
135
|
-
class InternalServerException extends BedrockAgentCoreServiceException {
|
|
133
|
+
};
|
|
134
|
+
let InternalServerException$1 = class InternalServerException extends BedrockAgentCoreServiceException$1 {
|
|
136
135
|
name = "InternalServerException";
|
|
137
136
|
$fault = "server";
|
|
138
137
|
constructor(opts) {
|
|
@@ -143,8 +142,8 @@ class InternalServerException extends BedrockAgentCoreServiceException {
|
|
|
143
142
|
});
|
|
144
143
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
145
144
|
}
|
|
146
|
-
}
|
|
147
|
-
class ResourceNotFoundException extends BedrockAgentCoreServiceException {
|
|
145
|
+
};
|
|
146
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends BedrockAgentCoreServiceException$1 {
|
|
148
147
|
name = "ResourceNotFoundException";
|
|
149
148
|
$fault = "client";
|
|
150
149
|
constructor(opts) {
|
|
@@ -155,8 +154,8 @@ class ResourceNotFoundException extends BedrockAgentCoreServiceException {
|
|
|
155
154
|
});
|
|
156
155
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
157
156
|
}
|
|
158
|
-
}
|
|
159
|
-
class RuntimeClientError extends BedrockAgentCoreServiceException {
|
|
157
|
+
};
|
|
158
|
+
let RuntimeClientError$1 = class RuntimeClientError extends BedrockAgentCoreServiceException$1 {
|
|
160
159
|
name = "RuntimeClientError";
|
|
161
160
|
$fault = "client";
|
|
162
161
|
constructor(opts) {
|
|
@@ -167,8 +166,8 @@ class RuntimeClientError extends BedrockAgentCoreServiceException {
|
|
|
167
166
|
});
|
|
168
167
|
Object.setPrototypeOf(this, RuntimeClientError.prototype);
|
|
169
168
|
}
|
|
170
|
-
}
|
|
171
|
-
class ServiceQuotaExceededException extends BedrockAgentCoreServiceException {
|
|
169
|
+
};
|
|
170
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BedrockAgentCoreServiceException$1 {
|
|
172
171
|
name = "ServiceQuotaExceededException";
|
|
173
172
|
$fault = "client";
|
|
174
173
|
constructor(opts) {
|
|
@@ -179,8 +178,8 @@ class ServiceQuotaExceededException extends BedrockAgentCoreServiceException {
|
|
|
179
178
|
});
|
|
180
179
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
181
180
|
}
|
|
182
|
-
}
|
|
183
|
-
class ThrottlingException extends BedrockAgentCoreServiceException {
|
|
181
|
+
};
|
|
182
|
+
let ThrottlingException$1 = class ThrottlingException extends BedrockAgentCoreServiceException$1 {
|
|
184
183
|
name = "ThrottlingException";
|
|
185
184
|
$fault = "client";
|
|
186
185
|
constructor(opts) {
|
|
@@ -191,7 +190,7 @@ class ThrottlingException extends BedrockAgentCoreServiceException {
|
|
|
191
190
|
});
|
|
192
191
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
193
192
|
}
|
|
194
|
-
}
|
|
193
|
+
};
|
|
195
194
|
const ValidationExceptionReason = {
|
|
196
195
|
CANNOT_PARSE: "CannotParse",
|
|
197
196
|
FIELD_VALIDATION_FAILED: "FieldValidationFailed",
|
|
@@ -199,7 +198,7 @@ const ValidationExceptionReason = {
|
|
|
199
198
|
RESOURCE_CONFLICT: "ResourceConflict",
|
|
200
199
|
ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession",
|
|
201
200
|
};
|
|
202
|
-
class ValidationException extends BedrockAgentCoreServiceException {
|
|
201
|
+
let ValidationException$1 = class ValidationException extends BedrockAgentCoreServiceException$1 {
|
|
203
202
|
name = "ValidationException";
|
|
204
203
|
$fault = "client";
|
|
205
204
|
reason;
|
|
@@ -214,8 +213,8 @@ class ValidationException extends BedrockAgentCoreServiceException {
|
|
|
214
213
|
this.reason = opts.reason;
|
|
215
214
|
this.fieldList = opts.fieldList;
|
|
216
215
|
}
|
|
217
|
-
}
|
|
218
|
-
class ConflictException extends BedrockAgentCoreServiceException {
|
|
216
|
+
};
|
|
217
|
+
let ConflictException$1 = class ConflictException extends BedrockAgentCoreServiceException$1 {
|
|
219
218
|
name = "ConflictException";
|
|
220
219
|
$fault = "client";
|
|
221
220
|
constructor(opts) {
|
|
@@ -226,8 +225,8 @@ class ConflictException extends BedrockAgentCoreServiceException {
|
|
|
226
225
|
});
|
|
227
226
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
228
227
|
}
|
|
229
|
-
}
|
|
230
|
-
class UnauthorizedException extends BedrockAgentCoreServiceException {
|
|
228
|
+
};
|
|
229
|
+
let UnauthorizedException$1 = class UnauthorizedException extends BedrockAgentCoreServiceException$1 {
|
|
231
230
|
name = "UnauthorizedException";
|
|
232
231
|
$fault = "client";
|
|
233
232
|
constructor(opts) {
|
|
@@ -238,7 +237,7 @@ class UnauthorizedException extends BedrockAgentCoreServiceException {
|
|
|
238
237
|
});
|
|
239
238
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
240
239
|
}
|
|
241
|
-
}
|
|
240
|
+
};
|
|
242
241
|
const BrowserSessionStatus = {
|
|
243
242
|
READY: "READY",
|
|
244
243
|
TERMINATED: "TERMINATED",
|
|
@@ -247,28 +246,10 @@ const AutomationStreamStatus = {
|
|
|
247
246
|
DISABLED: "DISABLED",
|
|
248
247
|
ENABLED: "ENABLED",
|
|
249
248
|
};
|
|
250
|
-
exports.StreamUpdate = void 0;
|
|
251
|
-
(function (StreamUpdate) {
|
|
252
|
-
StreamUpdate.visit = (value, visitor) => {
|
|
253
|
-
if (value.automationStreamUpdate !== undefined)
|
|
254
|
-
return visitor.automationStreamUpdate(value.automationStreamUpdate);
|
|
255
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
256
|
-
};
|
|
257
|
-
})(exports.StreamUpdate || (exports.StreamUpdate = {}));
|
|
258
249
|
const CodeInterpreterSessionStatus = {
|
|
259
250
|
READY: "READY",
|
|
260
251
|
TERMINATED: "TERMINATED",
|
|
261
252
|
};
|
|
262
|
-
exports.UserIdentifier = void 0;
|
|
263
|
-
(function (UserIdentifier) {
|
|
264
|
-
UserIdentifier.visit = (value, visitor) => {
|
|
265
|
-
if (value.userToken !== undefined)
|
|
266
|
-
return visitor.userToken(value.userToken);
|
|
267
|
-
if (value.userId !== undefined)
|
|
268
|
-
return visitor.userId(value.userId);
|
|
269
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
270
|
-
};
|
|
271
|
-
})(exports.UserIdentifier || (exports.UserIdentifier = {}));
|
|
272
253
|
const Oauth2FlowType = {
|
|
273
254
|
M2M: "M2M",
|
|
274
255
|
USER_FEDERATION: "USER_FEDERATION",
|
|
@@ -310,41 +291,11 @@ const TaskStatus = {
|
|
|
310
291
|
SUBMITTED: "submitted",
|
|
311
292
|
WORKING: "working",
|
|
312
293
|
};
|
|
313
|
-
exports.CodeInterpreterStreamOutput = void 0;
|
|
314
|
-
(function (CodeInterpreterStreamOutput) {
|
|
315
|
-
CodeInterpreterStreamOutput.visit = (value, visitor) => {
|
|
316
|
-
if (value.result !== undefined)
|
|
317
|
-
return visitor.result(value.result);
|
|
318
|
-
if (value.accessDeniedException !== undefined)
|
|
319
|
-
return visitor.accessDeniedException(value.accessDeniedException);
|
|
320
|
-
if (value.conflictException !== undefined)
|
|
321
|
-
return visitor.conflictException(value.conflictException);
|
|
322
|
-
if (value.internalServerException !== undefined)
|
|
323
|
-
return visitor.internalServerException(value.internalServerException);
|
|
324
|
-
if (value.resourceNotFoundException !== undefined)
|
|
325
|
-
return visitor.resourceNotFoundException(value.resourceNotFoundException);
|
|
326
|
-
if (value.serviceQuotaExceededException !== undefined)
|
|
327
|
-
return visitor.serviceQuotaExceededException(value.serviceQuotaExceededException);
|
|
328
|
-
if (value.throttlingException !== undefined)
|
|
329
|
-
return visitor.throttlingException(value.throttlingException);
|
|
330
|
-
if (value.validationException !== undefined)
|
|
331
|
-
return visitor.validationException(value.validationException);
|
|
332
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
333
|
-
};
|
|
334
|
-
})(exports.CodeInterpreterStreamOutput || (exports.CodeInterpreterStreamOutput = {}));
|
|
335
|
-
exports.MemoryContent = void 0;
|
|
336
|
-
(function (MemoryContent) {
|
|
337
|
-
MemoryContent.visit = (value, visitor) => {
|
|
338
|
-
if (value.text !== undefined)
|
|
339
|
-
return visitor.text(value.text);
|
|
340
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
341
|
-
};
|
|
342
|
-
})(exports.MemoryContent || (exports.MemoryContent = {}));
|
|
343
294
|
const MemoryRecordStatus = {
|
|
344
295
|
FAILED: "FAILED",
|
|
345
296
|
SUCCEEDED: "SUCCEEDED",
|
|
346
297
|
};
|
|
347
|
-
class ServiceException extends BedrockAgentCoreServiceException {
|
|
298
|
+
let ServiceException$1 = class ServiceException extends BedrockAgentCoreServiceException$1 {
|
|
348
299
|
name = "ServiceException";
|
|
349
300
|
$fault = "server";
|
|
350
301
|
constructor(opts) {
|
|
@@ -355,8 +306,8 @@ class ServiceException extends BedrockAgentCoreServiceException {
|
|
|
355
306
|
});
|
|
356
307
|
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
357
308
|
}
|
|
358
|
-
}
|
|
359
|
-
class ThrottledException extends BedrockAgentCoreServiceException {
|
|
309
|
+
};
|
|
310
|
+
let ThrottledException$1 = class ThrottledException extends BedrockAgentCoreServiceException$1 {
|
|
360
311
|
name = "ThrottledException";
|
|
361
312
|
$fault = "client";
|
|
362
313
|
constructor(opts) {
|
|
@@ -367,40 +318,14 @@ class ThrottledException extends BedrockAgentCoreServiceException {
|
|
|
367
318
|
});
|
|
368
319
|
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
369
320
|
}
|
|
370
|
-
}
|
|
371
|
-
exports.MetadataValue = void 0;
|
|
372
|
-
(function (MetadataValue) {
|
|
373
|
-
MetadataValue.visit = (value, visitor) => {
|
|
374
|
-
if (value.stringValue !== undefined)
|
|
375
|
-
return visitor.stringValue(value.stringValue);
|
|
376
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
377
|
-
};
|
|
378
|
-
})(exports.MetadataValue || (exports.MetadataValue = {}));
|
|
379
|
-
exports.Content = void 0;
|
|
380
|
-
(function (Content) {
|
|
381
|
-
Content.visit = (value, visitor) => {
|
|
382
|
-
if (value.text !== undefined)
|
|
383
|
-
return visitor.text(value.text);
|
|
384
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
385
|
-
};
|
|
386
|
-
})(exports.Content || (exports.Content = {}));
|
|
321
|
+
};
|
|
387
322
|
const Role = {
|
|
388
323
|
ASSISTANT: "ASSISTANT",
|
|
389
324
|
OTHER: "OTHER",
|
|
390
325
|
TOOL: "TOOL",
|
|
391
326
|
USER: "USER",
|
|
392
327
|
};
|
|
393
|
-
|
|
394
|
-
(function (PayloadType) {
|
|
395
|
-
PayloadType.visit = (value, visitor) => {
|
|
396
|
-
if (value.conversational !== undefined)
|
|
397
|
-
return visitor.conversational(value.conversational);
|
|
398
|
-
if (value.blob !== undefined)
|
|
399
|
-
return visitor.blob(value.blob);
|
|
400
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
401
|
-
};
|
|
402
|
-
})(exports.PayloadType || (exports.PayloadType = {}));
|
|
403
|
-
class InvalidInputException extends BedrockAgentCoreServiceException {
|
|
328
|
+
let InvalidInputException$1 = class InvalidInputException extends BedrockAgentCoreServiceException$1 {
|
|
404
329
|
name = "InvalidInputException";
|
|
405
330
|
$fault = "client";
|
|
406
331
|
constructor(opts) {
|
|
@@ -411,1817 +336,1772 @@ class InvalidInputException extends BedrockAgentCoreServiceException {
|
|
|
411
336
|
});
|
|
412
337
|
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
413
338
|
}
|
|
414
|
-
}
|
|
415
|
-
exports.LeftExpression = void 0;
|
|
416
|
-
(function (LeftExpression) {
|
|
417
|
-
LeftExpression.visit = (value, visitor) => {
|
|
418
|
-
if (value.metadataKey !== undefined)
|
|
419
|
-
return visitor.metadataKey(value.metadataKey);
|
|
420
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
421
|
-
};
|
|
422
|
-
})(exports.LeftExpression || (exports.LeftExpression = {}));
|
|
339
|
+
};
|
|
423
340
|
const OperatorType = {
|
|
424
341
|
EQUALS_TO: "EQUALS_TO",
|
|
425
342
|
EXISTS: "EXISTS",
|
|
426
343
|
NOT_EXISTS: "NOT_EXISTS",
|
|
427
344
|
};
|
|
428
|
-
exports.RightExpression = void 0;
|
|
429
|
-
(function (RightExpression) {
|
|
430
|
-
RightExpression.visit = (value, visitor) => {
|
|
431
|
-
if (value.metadataValue !== undefined)
|
|
432
|
-
return visitor.metadataValue(value.metadataValue);
|
|
433
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
434
|
-
};
|
|
435
|
-
})(exports.RightExpression || (exports.RightExpression = {}));
|
|
436
|
-
const InvokeAgentRuntimeRequestFilterSensitiveLog = (obj) => ({
|
|
437
|
-
...obj,
|
|
438
|
-
...(obj.payload && { payload: smithyClient.SENSITIVE_STRING }),
|
|
439
|
-
});
|
|
440
|
-
const InvokeAgentRuntimeResponseFilterSensitiveLog = (obj) => ({
|
|
441
|
-
...obj,
|
|
442
|
-
...(obj.response && { response: smithyClient.SENSITIVE_STRING }),
|
|
443
|
-
});
|
|
444
|
-
const UserIdentifierFilterSensitiveLog = (obj) => {
|
|
445
|
-
if (obj.userToken !== undefined)
|
|
446
|
-
return { userToken: smithyClient.SENSITIVE_STRING };
|
|
447
|
-
if (obj.userId !== undefined)
|
|
448
|
-
return { userId: obj.userId };
|
|
449
|
-
if (obj.$unknown !== undefined)
|
|
450
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
451
|
-
};
|
|
452
|
-
const CompleteResourceTokenAuthRequestFilterSensitiveLog = (obj) => ({
|
|
453
|
-
...obj,
|
|
454
|
-
...(obj.userIdentifier && { userIdentifier: UserIdentifierFilterSensitiveLog(obj.userIdentifier) }),
|
|
455
|
-
});
|
|
456
|
-
const GetResourceApiKeyRequestFilterSensitiveLog = (obj) => ({
|
|
457
|
-
...obj,
|
|
458
|
-
...(obj.workloadIdentityToken && { workloadIdentityToken: smithyClient.SENSITIVE_STRING }),
|
|
459
|
-
});
|
|
460
|
-
const GetResourceApiKeyResponseFilterSensitiveLog = (obj) => ({
|
|
461
|
-
...obj,
|
|
462
|
-
...(obj.apiKey && { apiKey: smithyClient.SENSITIVE_STRING }),
|
|
463
|
-
});
|
|
464
|
-
const GetResourceOauth2TokenRequestFilterSensitiveLog = (obj) => ({
|
|
465
|
-
...obj,
|
|
466
|
-
...(obj.workloadIdentityToken && { workloadIdentityToken: smithyClient.SENSITIVE_STRING }),
|
|
467
|
-
...(obj.customParameters && { customParameters: smithyClient.SENSITIVE_STRING }),
|
|
468
|
-
...(obj.customState && { customState: smithyClient.SENSITIVE_STRING }),
|
|
469
|
-
});
|
|
470
|
-
const GetResourceOauth2TokenResponseFilterSensitiveLog = (obj) => ({
|
|
471
|
-
...obj,
|
|
472
|
-
...(obj.authorizationUrl && { authorizationUrl: smithyClient.SENSITIVE_STRING }),
|
|
473
|
-
...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
|
|
474
|
-
});
|
|
475
|
-
const GetWorkloadAccessTokenResponseFilterSensitiveLog = (obj) => ({
|
|
476
|
-
...obj,
|
|
477
|
-
...(obj.workloadAccessToken && { workloadAccessToken: smithyClient.SENSITIVE_STRING }),
|
|
478
|
-
});
|
|
479
|
-
const GetWorkloadAccessTokenForJWTRequestFilterSensitiveLog = (obj) => ({
|
|
480
|
-
...obj,
|
|
481
|
-
...(obj.userToken && { userToken: smithyClient.SENSITIVE_STRING }),
|
|
482
|
-
});
|
|
483
|
-
const GetWorkloadAccessTokenForJWTResponseFilterSensitiveLog = (obj) => ({
|
|
484
|
-
...obj,
|
|
485
|
-
...(obj.workloadAccessToken && { workloadAccessToken: smithyClient.SENSITIVE_STRING }),
|
|
486
|
-
});
|
|
487
|
-
const GetWorkloadAccessTokenForUserIdResponseFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
...(obj.workloadAccessToken && { workloadAccessToken: smithyClient.SENSITIVE_STRING }),
|
|
490
|
-
});
|
|
491
|
-
const InputContentBlockFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
...(obj.blob && { blob: smithyClient.SENSITIVE_STRING }),
|
|
494
|
-
});
|
|
495
|
-
const ToolArgumentsFilterSensitiveLog = (obj) => ({
|
|
496
|
-
...obj,
|
|
497
|
-
...(obj.content && { content: obj.content.map((item) => InputContentBlockFilterSensitiveLog(item)) }),
|
|
498
|
-
});
|
|
499
|
-
const InvokeCodeInterpreterRequestFilterSensitiveLog = (obj) => ({
|
|
500
|
-
...obj,
|
|
501
|
-
...(obj.arguments && { arguments: ToolArgumentsFilterSensitiveLog(obj.arguments) }),
|
|
502
|
-
});
|
|
503
|
-
const CodeInterpreterStreamOutputFilterSensitiveLog = (obj) => {
|
|
504
|
-
if (obj.result !== undefined)
|
|
505
|
-
return { result: obj.result };
|
|
506
|
-
if (obj.accessDeniedException !== undefined)
|
|
507
|
-
return { accessDeniedException: obj.accessDeniedException };
|
|
508
|
-
if (obj.conflictException !== undefined)
|
|
509
|
-
return { conflictException: obj.conflictException };
|
|
510
|
-
if (obj.internalServerException !== undefined)
|
|
511
|
-
return { internalServerException: obj.internalServerException };
|
|
512
|
-
if (obj.resourceNotFoundException !== undefined)
|
|
513
|
-
return { resourceNotFoundException: obj.resourceNotFoundException };
|
|
514
|
-
if (obj.serviceQuotaExceededException !== undefined)
|
|
515
|
-
return { serviceQuotaExceededException: obj.serviceQuotaExceededException };
|
|
516
|
-
if (obj.throttlingException !== undefined)
|
|
517
|
-
return { throttlingException: obj.throttlingException };
|
|
518
|
-
if (obj.validationException !== undefined)
|
|
519
|
-
return { validationException: obj.validationException };
|
|
520
|
-
if (obj.$unknown !== undefined)
|
|
521
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
522
|
-
};
|
|
523
|
-
const InvokeCodeInterpreterResponseFilterSensitiveLog = (obj) => ({
|
|
524
|
-
...obj,
|
|
525
|
-
...(obj.stream && { stream: "STREAMING_CONTENT" }),
|
|
526
|
-
});
|
|
527
|
-
const MemoryContentFilterSensitiveLog = (obj) => {
|
|
528
|
-
if (obj.text !== undefined)
|
|
529
|
-
return { text: smithyClient.SENSITIVE_STRING };
|
|
530
|
-
if (obj.$unknown !== undefined)
|
|
531
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
532
|
-
};
|
|
533
|
-
const MemoryRecordCreateInputFilterSensitiveLog = (obj) => ({
|
|
534
|
-
...obj,
|
|
535
|
-
...(obj.content && { content: MemoryContentFilterSensitiveLog(obj.content) }),
|
|
536
|
-
});
|
|
537
|
-
const BatchCreateMemoryRecordsInputFilterSensitiveLog = (obj) => ({
|
|
538
|
-
...obj,
|
|
539
|
-
...(obj.records && { records: obj.records.map((item) => MemoryRecordCreateInputFilterSensitiveLog(item)) }),
|
|
540
|
-
});
|
|
541
|
-
const MemoryRecordUpdateInputFilterSensitiveLog = (obj) => ({
|
|
542
|
-
...obj,
|
|
543
|
-
...(obj.content && { content: MemoryContentFilterSensitiveLog(obj.content) }),
|
|
544
|
-
});
|
|
545
|
-
const BatchUpdateMemoryRecordsInputFilterSensitiveLog = (obj) => ({
|
|
546
|
-
...obj,
|
|
547
|
-
...(obj.records && { records: obj.records.map((item) => MemoryRecordUpdateInputFilterSensitiveLog(item)) }),
|
|
548
|
-
});
|
|
549
|
-
const ContentFilterSensitiveLog = (obj) => {
|
|
550
|
-
if (obj.text !== undefined)
|
|
551
|
-
return { text: smithyClient.SENSITIVE_STRING };
|
|
552
|
-
if (obj.$unknown !== undefined)
|
|
553
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
554
|
-
};
|
|
555
|
-
const ConversationalFilterSensitiveLog = (obj) => ({
|
|
556
|
-
...obj,
|
|
557
|
-
...(obj.content && { content: ContentFilterSensitiveLog(obj.content) }),
|
|
558
|
-
});
|
|
559
|
-
const PayloadTypeFilterSensitiveLog = (obj) => {
|
|
560
|
-
if (obj.conversational !== undefined)
|
|
561
|
-
return { conversational: ConversationalFilterSensitiveLog(obj.conversational) };
|
|
562
|
-
if (obj.blob !== undefined)
|
|
563
|
-
return { blob: obj.blob };
|
|
564
|
-
if (obj.$unknown !== undefined)
|
|
565
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
566
|
-
};
|
|
567
|
-
const CreateEventInputFilterSensitiveLog = (obj) => ({
|
|
568
|
-
...obj,
|
|
569
|
-
...(obj.payload && { payload: obj.payload.map((item) => PayloadTypeFilterSensitiveLog(item)) }),
|
|
570
|
-
...(obj.metadata && {
|
|
571
|
-
metadata: Object.entries(obj.metadata).reduce((acc, [key, value]) => ((acc[key] = value), acc), {}),
|
|
572
|
-
}),
|
|
573
|
-
});
|
|
574
|
-
const EventFilterSensitiveLog = (obj) => ({
|
|
575
|
-
...obj,
|
|
576
|
-
...(obj.payload && { payload: obj.payload.map((item) => PayloadTypeFilterSensitiveLog(item)) }),
|
|
577
|
-
...(obj.metadata && {
|
|
578
|
-
metadata: Object.entries(obj.metadata).reduce((acc, [key, value]) => ((acc[key] = value), acc), {}),
|
|
579
|
-
}),
|
|
580
|
-
});
|
|
581
|
-
const CreateEventOutputFilterSensitiveLog = (obj) => ({
|
|
582
|
-
...obj,
|
|
583
|
-
...(obj.event && { event: EventFilterSensitiveLog(obj.event) }),
|
|
584
|
-
});
|
|
585
|
-
const GetEventOutputFilterSensitiveLog = (obj) => ({
|
|
586
|
-
...obj,
|
|
587
|
-
...(obj.event && { event: EventFilterSensitiveLog(obj.event) }),
|
|
588
|
-
});
|
|
589
|
-
const MemoryRecordFilterSensitiveLog = (obj) => ({
|
|
590
|
-
...obj,
|
|
591
|
-
...(obj.content && { content: MemoryContentFilterSensitiveLog(obj.content) }),
|
|
592
|
-
});
|
|
593
|
-
const GetMemoryRecordOutputFilterSensitiveLog = (obj) => ({
|
|
594
|
-
...obj,
|
|
595
|
-
...(obj.memoryRecord && { memoryRecord: MemoryRecordFilterSensitiveLog(obj.memoryRecord) }),
|
|
596
|
-
});
|
|
597
|
-
const ListEventsOutputFilterSensitiveLog = (obj) => ({
|
|
598
|
-
...obj,
|
|
599
|
-
...(obj.events && { events: obj.events.map((item) => EventFilterSensitiveLog(item)) }),
|
|
600
|
-
});
|
|
601
|
-
const MemoryRecordSummaryFilterSensitiveLog = (obj) => ({
|
|
602
|
-
...obj,
|
|
603
|
-
...(obj.content && { content: MemoryContentFilterSensitiveLog(obj.content) }),
|
|
604
|
-
});
|
|
605
|
-
const ListMemoryRecordsOutputFilterSensitiveLog = (obj) => ({
|
|
606
|
-
...obj,
|
|
607
|
-
...(obj.memoryRecordSummaries && {
|
|
608
|
-
memoryRecordSummaries: obj.memoryRecordSummaries.map((item) => MemoryRecordSummaryFilterSensitiveLog(item)),
|
|
609
|
-
}),
|
|
610
|
-
});
|
|
611
|
-
const SearchCriteriaFilterSensitiveLog = (obj) => ({
|
|
612
|
-
...obj,
|
|
613
|
-
...(obj.searchQuery && { searchQuery: smithyClient.SENSITIVE_STRING }),
|
|
614
|
-
});
|
|
615
|
-
const RetrieveMemoryRecordsInputFilterSensitiveLog = (obj) => ({
|
|
616
|
-
...obj,
|
|
617
|
-
...(obj.searchCriteria && { searchCriteria: SearchCriteriaFilterSensitiveLog(obj.searchCriteria) }),
|
|
618
|
-
});
|
|
619
|
-
const RetrieveMemoryRecordsOutputFilterSensitiveLog = (obj) => ({
|
|
620
|
-
...obj,
|
|
621
|
-
...(obj.memoryRecordSummaries && {
|
|
622
|
-
memoryRecordSummaries: obj.memoryRecordSummaries.map((item) => MemoryRecordSummaryFilterSensitiveLog(item)),
|
|
623
|
-
}),
|
|
624
|
-
});
|
|
625
345
|
|
|
626
|
-
const
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
const
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
const
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
const
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
const
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
const
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
const
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
const
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
const
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
const
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
const
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
const
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
const
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
const
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
807
|
-
customParameters: (_) => smithyClient._json(_),
|
|
808
|
-
customState: [],
|
|
809
|
-
forceAuthentication: [],
|
|
810
|
-
oauth2Flow: [],
|
|
811
|
-
resourceCredentialProviderName: [],
|
|
812
|
-
resourceOauth2ReturnUrl: [],
|
|
813
|
-
scopes: (_) => smithyClient._json(_),
|
|
814
|
-
sessionUri: [],
|
|
815
|
-
workloadIdentityToken: [],
|
|
816
|
-
}));
|
|
817
|
-
b.m("POST").h(headers).b(body);
|
|
818
|
-
return b.build();
|
|
819
|
-
};
|
|
820
|
-
const se_GetWorkloadAccessTokenCommand = async (input, context) => {
|
|
821
|
-
const b = core.requestBuilder(input, context);
|
|
822
|
-
const headers = {
|
|
823
|
-
"content-type": "application/json",
|
|
824
|
-
};
|
|
825
|
-
b.bp("/identities/GetWorkloadAccessToken");
|
|
826
|
-
let body;
|
|
827
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
828
|
-
workloadName: [],
|
|
829
|
-
}));
|
|
830
|
-
b.m("POST").h(headers).b(body);
|
|
831
|
-
return b.build();
|
|
832
|
-
};
|
|
833
|
-
const se_GetWorkloadAccessTokenForJWTCommand = async (input, context) => {
|
|
834
|
-
const b = core.requestBuilder(input, context);
|
|
835
|
-
const headers = {
|
|
836
|
-
"content-type": "application/json",
|
|
837
|
-
};
|
|
838
|
-
b.bp("/identities/GetWorkloadAccessTokenForJWT");
|
|
839
|
-
let body;
|
|
840
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
841
|
-
userToken: [],
|
|
842
|
-
workloadName: [],
|
|
843
|
-
}));
|
|
844
|
-
b.m("POST").h(headers).b(body);
|
|
845
|
-
return b.build();
|
|
846
|
-
};
|
|
847
|
-
const se_GetWorkloadAccessTokenForUserIdCommand = async (input, context) => {
|
|
848
|
-
const b = core.requestBuilder(input, context);
|
|
849
|
-
const headers = {
|
|
850
|
-
"content-type": "application/json",
|
|
851
|
-
};
|
|
852
|
-
b.bp("/identities/GetWorkloadAccessTokenForUserId");
|
|
853
|
-
let body;
|
|
854
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
855
|
-
userId: [],
|
|
856
|
-
workloadName: [],
|
|
857
|
-
}));
|
|
858
|
-
b.m("POST").h(headers).b(body);
|
|
859
|
-
return b.build();
|
|
860
|
-
};
|
|
861
|
-
const se_InvokeAgentRuntimeCommand = async (input, context) => {
|
|
862
|
-
const b = core.requestBuilder(input, context);
|
|
863
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
864
|
-
[_ct]: input[_cT] || "application/octet-stream",
|
|
865
|
-
[_a]: input[_a],
|
|
866
|
-
[_msi]: input[_mSI],
|
|
867
|
-
[_xabarsi]: input[_rSI] ?? uuid.v4(),
|
|
868
|
-
[_mpv]: input[_mPV],
|
|
869
|
-
[_xabarui]: input[_rUI],
|
|
870
|
-
[_xati]: input[_tI],
|
|
871
|
-
[_t]: input[_tP],
|
|
872
|
-
[_tr]: input[_tS],
|
|
873
|
-
[_b]: input[_b],
|
|
874
|
-
});
|
|
875
|
-
b.bp("/runtimes/{agentRuntimeArn}/invocations");
|
|
876
|
-
b.p("agentRuntimeArn", () => input.agentRuntimeArn, "{agentRuntimeArn}", false);
|
|
877
|
-
const query = smithyClient.map({
|
|
878
|
-
[_q]: [, input[_q]],
|
|
879
|
-
[_aI]: [, input[_aI]],
|
|
880
|
-
});
|
|
881
|
-
let body;
|
|
882
|
-
if (input.payload !== undefined) {
|
|
883
|
-
body = input.payload;
|
|
884
|
-
}
|
|
885
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
886
|
-
return b.build();
|
|
887
|
-
};
|
|
888
|
-
const se_InvokeCodeInterpreterCommand = async (input, context) => {
|
|
889
|
-
const b = core.requestBuilder(input, context);
|
|
890
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
891
|
-
"content-type": "application/json",
|
|
892
|
-
[_xacisi]: input[_sI],
|
|
893
|
-
[_xati]: input[_tI],
|
|
894
|
-
[_t]: input[_tP],
|
|
895
|
-
});
|
|
896
|
-
b.bp("/code-interpreters/{codeInterpreterIdentifier}/tools/invoke");
|
|
897
|
-
b.p("codeInterpreterIdentifier", () => input.codeInterpreterIdentifier, "{codeInterpreterIdentifier}", false);
|
|
898
|
-
let body;
|
|
899
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
900
|
-
arguments: (_) => se_ToolArguments(_, context),
|
|
901
|
-
name: [],
|
|
902
|
-
}));
|
|
903
|
-
b.m("POST").h(headers).b(body);
|
|
904
|
-
return b.build();
|
|
905
|
-
};
|
|
906
|
-
const se_ListActorsCommand = async (input, context) => {
|
|
907
|
-
const b = core.requestBuilder(input, context);
|
|
908
|
-
const headers = {
|
|
909
|
-
"content-type": "application/json",
|
|
910
|
-
};
|
|
911
|
-
b.bp("/memories/{memoryId}/actors");
|
|
912
|
-
b.p("memoryId", () => input.memoryId, "{memoryId}", false);
|
|
913
|
-
let body;
|
|
914
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
915
|
-
maxResults: [],
|
|
916
|
-
nextToken: [],
|
|
917
|
-
}));
|
|
918
|
-
b.m("POST").h(headers).b(body);
|
|
919
|
-
return b.build();
|
|
920
|
-
};
|
|
921
|
-
const se_ListBrowserSessionsCommand = async (input, context) => {
|
|
922
|
-
const b = core.requestBuilder(input, context);
|
|
923
|
-
const headers = {
|
|
924
|
-
"content-type": "application/json",
|
|
925
|
-
};
|
|
926
|
-
b.bp("/browsers/{browserIdentifier}/sessions/list");
|
|
927
|
-
b.p("browserIdentifier", () => input.browserIdentifier, "{browserIdentifier}", false);
|
|
928
|
-
let body;
|
|
929
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
930
|
-
maxResults: [],
|
|
931
|
-
nextToken: [],
|
|
932
|
-
status: [],
|
|
933
|
-
}));
|
|
934
|
-
b.m("POST").h(headers).b(body);
|
|
935
|
-
return b.build();
|
|
936
|
-
};
|
|
937
|
-
const se_ListCodeInterpreterSessionsCommand = async (input, context) => {
|
|
938
|
-
const b = core.requestBuilder(input, context);
|
|
939
|
-
const headers = {
|
|
940
|
-
"content-type": "application/json",
|
|
941
|
-
};
|
|
942
|
-
b.bp("/code-interpreters/{codeInterpreterIdentifier}/sessions/list");
|
|
943
|
-
b.p("codeInterpreterIdentifier", () => input.codeInterpreterIdentifier, "{codeInterpreterIdentifier}", false);
|
|
944
|
-
let body;
|
|
945
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
946
|
-
maxResults: [],
|
|
947
|
-
nextToken: [],
|
|
948
|
-
status: [],
|
|
949
|
-
}));
|
|
950
|
-
b.m("POST").h(headers).b(body);
|
|
951
|
-
return b.build();
|
|
952
|
-
};
|
|
953
|
-
const se_ListEventsCommand = async (input, context) => {
|
|
954
|
-
const b = core.requestBuilder(input, context);
|
|
955
|
-
const headers = {
|
|
956
|
-
"content-type": "application/json",
|
|
957
|
-
};
|
|
958
|
-
b.bp("/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}");
|
|
959
|
-
b.p("memoryId", () => input.memoryId, "{memoryId}", false);
|
|
960
|
-
b.p("sessionId", () => input.sessionId, "{sessionId}", false);
|
|
961
|
-
b.p("actorId", () => input.actorId, "{actorId}", false);
|
|
962
|
-
let body;
|
|
963
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
964
|
-
filter: (_) => smithyClient._json(_),
|
|
965
|
-
includePayloads: [],
|
|
966
|
-
maxResults: [],
|
|
967
|
-
nextToken: [],
|
|
968
|
-
}));
|
|
969
|
-
b.m("POST").h(headers).b(body);
|
|
970
|
-
return b.build();
|
|
971
|
-
};
|
|
972
|
-
const se_ListMemoryRecordsCommand = async (input, context) => {
|
|
973
|
-
const b = core.requestBuilder(input, context);
|
|
974
|
-
const headers = {
|
|
975
|
-
"content-type": "application/json",
|
|
976
|
-
};
|
|
977
|
-
b.bp("/memories/{memoryId}/memoryRecords");
|
|
978
|
-
b.p("memoryId", () => input.memoryId, "{memoryId}", false);
|
|
979
|
-
let body;
|
|
980
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
981
|
-
maxResults: [],
|
|
982
|
-
memoryStrategyId: [],
|
|
983
|
-
namespace: [],
|
|
984
|
-
nextToken: [],
|
|
985
|
-
}));
|
|
986
|
-
b.m("POST").h(headers).b(body);
|
|
987
|
-
return b.build();
|
|
988
|
-
};
|
|
989
|
-
const se_ListSessionsCommand = async (input, context) => {
|
|
990
|
-
const b = core.requestBuilder(input, context);
|
|
991
|
-
const headers = {
|
|
992
|
-
"content-type": "application/json",
|
|
993
|
-
};
|
|
994
|
-
b.bp("/memories/{memoryId}/actor/{actorId}/sessions");
|
|
995
|
-
b.p("memoryId", () => input.memoryId, "{memoryId}", false);
|
|
996
|
-
b.p("actorId", () => input.actorId, "{actorId}", false);
|
|
997
|
-
let body;
|
|
998
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
999
|
-
maxResults: [],
|
|
1000
|
-
nextToken: [],
|
|
1001
|
-
}));
|
|
1002
|
-
b.m("POST").h(headers).b(body);
|
|
1003
|
-
return b.build();
|
|
1004
|
-
};
|
|
1005
|
-
const se_RetrieveMemoryRecordsCommand = async (input, context) => {
|
|
1006
|
-
const b = core.requestBuilder(input, context);
|
|
1007
|
-
const headers = {
|
|
1008
|
-
"content-type": "application/json",
|
|
1009
|
-
};
|
|
1010
|
-
b.bp("/memories/{memoryId}/retrieve");
|
|
1011
|
-
b.p("memoryId", () => input.memoryId, "{memoryId}", false);
|
|
1012
|
-
let body;
|
|
1013
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1014
|
-
maxResults: [],
|
|
1015
|
-
namespace: [],
|
|
1016
|
-
nextToken: [],
|
|
1017
|
-
searchCriteria: (_) => smithyClient._json(_),
|
|
1018
|
-
}));
|
|
1019
|
-
b.m("POST").h(headers).b(body);
|
|
1020
|
-
return b.build();
|
|
1021
|
-
};
|
|
1022
|
-
const se_StartBrowserSessionCommand = async (input, context) => {
|
|
1023
|
-
const b = core.requestBuilder(input, context);
|
|
1024
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
1025
|
-
"content-type": "application/json",
|
|
1026
|
-
[_xati]: input[_tI],
|
|
1027
|
-
[_t]: input[_tP],
|
|
1028
|
-
});
|
|
1029
|
-
b.bp("/browsers/{browserIdentifier}/sessions/start");
|
|
1030
|
-
b.p("browserIdentifier", () => input.browserIdentifier, "{browserIdentifier}", false);
|
|
1031
|
-
let body;
|
|
1032
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1033
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
1034
|
-
name: [],
|
|
1035
|
-
sessionTimeoutSeconds: [],
|
|
1036
|
-
viewPort: (_) => smithyClient._json(_),
|
|
1037
|
-
}));
|
|
1038
|
-
b.m("PUT").h(headers).b(body);
|
|
1039
|
-
return b.build();
|
|
1040
|
-
};
|
|
1041
|
-
const se_StartCodeInterpreterSessionCommand = async (input, context) => {
|
|
1042
|
-
const b = core.requestBuilder(input, context);
|
|
1043
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
1044
|
-
"content-type": "application/json",
|
|
1045
|
-
[_xati]: input[_tI],
|
|
1046
|
-
[_t]: input[_tP],
|
|
1047
|
-
});
|
|
1048
|
-
b.bp("/code-interpreters/{codeInterpreterIdentifier}/sessions/start");
|
|
1049
|
-
b.p("codeInterpreterIdentifier", () => input.codeInterpreterIdentifier, "{codeInterpreterIdentifier}", false);
|
|
1050
|
-
let body;
|
|
1051
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1052
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
1053
|
-
name: [],
|
|
1054
|
-
sessionTimeoutSeconds: [],
|
|
1055
|
-
}));
|
|
1056
|
-
b.m("PUT").h(headers).b(body);
|
|
1057
|
-
return b.build();
|
|
1058
|
-
};
|
|
1059
|
-
const se_StopBrowserSessionCommand = async (input, context) => {
|
|
1060
|
-
const b = core.requestBuilder(input, context);
|
|
1061
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
1062
|
-
"content-type": "application/json",
|
|
1063
|
-
[_xati]: input[_tI],
|
|
1064
|
-
[_t]: input[_tP],
|
|
1065
|
-
});
|
|
1066
|
-
b.bp("/browsers/{browserIdentifier}/sessions/stop");
|
|
1067
|
-
b.p("browserIdentifier", () => input.browserIdentifier, "{browserIdentifier}", false);
|
|
1068
|
-
const query = smithyClient.map({
|
|
1069
|
-
[_sI]: [, smithyClient.expectNonNull(input[_sI], `sessionId`)],
|
|
1070
|
-
});
|
|
1071
|
-
let body;
|
|
1072
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1073
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
1074
|
-
}));
|
|
1075
|
-
b.m("PUT").h(headers).q(query).b(body);
|
|
1076
|
-
return b.build();
|
|
1077
|
-
};
|
|
1078
|
-
const se_StopCodeInterpreterSessionCommand = async (input, context) => {
|
|
1079
|
-
const b = core.requestBuilder(input, context);
|
|
1080
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
1081
|
-
"content-type": "application/json",
|
|
1082
|
-
[_xati]: input[_tI],
|
|
1083
|
-
[_t]: input[_tP],
|
|
1084
|
-
});
|
|
1085
|
-
b.bp("/code-interpreters/{codeInterpreterIdentifier}/sessions/stop");
|
|
1086
|
-
b.p("codeInterpreterIdentifier", () => input.codeInterpreterIdentifier, "{codeInterpreterIdentifier}", false);
|
|
1087
|
-
const query = smithyClient.map({
|
|
1088
|
-
[_sI]: [, smithyClient.expectNonNull(input[_sI], `sessionId`)],
|
|
1089
|
-
});
|
|
1090
|
-
let body;
|
|
1091
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1092
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
1093
|
-
}));
|
|
1094
|
-
b.m("PUT").h(headers).q(query).b(body);
|
|
1095
|
-
return b.build();
|
|
1096
|
-
};
|
|
1097
|
-
const se_StopRuntimeSessionCommand = async (input, context) => {
|
|
1098
|
-
const b = core.requestBuilder(input, context);
|
|
1099
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
1100
|
-
"content-type": "application/json",
|
|
1101
|
-
[_xabarsi]: input[_rSI],
|
|
1102
|
-
});
|
|
1103
|
-
b.bp("/runtimes/{agentRuntimeArn}/stopruntimesession");
|
|
1104
|
-
b.p("agentRuntimeArn", () => input.agentRuntimeArn, "{agentRuntimeArn}", false);
|
|
1105
|
-
const query = smithyClient.map({
|
|
1106
|
-
[_q]: [, input[_q]],
|
|
1107
|
-
});
|
|
1108
|
-
let body;
|
|
1109
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1110
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
1111
|
-
}));
|
|
1112
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
1113
|
-
return b.build();
|
|
1114
|
-
};
|
|
1115
|
-
const se_UpdateBrowserStreamCommand = async (input, context) => {
|
|
1116
|
-
const b = core.requestBuilder(input, context);
|
|
1117
|
-
const headers = {
|
|
1118
|
-
"content-type": "application/json",
|
|
1119
|
-
};
|
|
1120
|
-
b.bp("/browsers/{browserIdentifier}/sessions/streams/update");
|
|
1121
|
-
b.p("browserIdentifier", () => input.browserIdentifier, "{browserIdentifier}", false);
|
|
1122
|
-
const query = smithyClient.map({
|
|
1123
|
-
[_sI]: [, smithyClient.expectNonNull(input[_sI], `sessionId`)],
|
|
1124
|
-
});
|
|
1125
|
-
let body;
|
|
1126
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1127
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
1128
|
-
streamUpdate: (_) => smithyClient._json(_),
|
|
1129
|
-
}));
|
|
1130
|
-
b.m("PUT").h(headers).q(query).b(body);
|
|
1131
|
-
return b.build();
|
|
1132
|
-
};
|
|
1133
|
-
const de_BatchCreateMemoryRecordsCommand = async (output, context) => {
|
|
1134
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1135
|
-
return de_CommandError(output, context);
|
|
1136
|
-
}
|
|
1137
|
-
const contents = smithyClient.map({
|
|
1138
|
-
$metadata: deserializeMetadata(output),
|
|
1139
|
-
});
|
|
1140
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1141
|
-
const doc = smithyClient.take(data, {
|
|
1142
|
-
failedRecords: smithyClient._json,
|
|
1143
|
-
successfulRecords: smithyClient._json,
|
|
1144
|
-
});
|
|
1145
|
-
Object.assign(contents, doc);
|
|
1146
|
-
return contents;
|
|
1147
|
-
};
|
|
1148
|
-
const de_BatchDeleteMemoryRecordsCommand = async (output, context) => {
|
|
1149
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1150
|
-
return de_CommandError(output, context);
|
|
1151
|
-
}
|
|
1152
|
-
const contents = smithyClient.map({
|
|
1153
|
-
$metadata: deserializeMetadata(output),
|
|
1154
|
-
});
|
|
1155
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1156
|
-
const doc = smithyClient.take(data, {
|
|
1157
|
-
failedRecords: smithyClient._json,
|
|
1158
|
-
successfulRecords: smithyClient._json,
|
|
1159
|
-
});
|
|
1160
|
-
Object.assign(contents, doc);
|
|
1161
|
-
return contents;
|
|
1162
|
-
};
|
|
1163
|
-
const de_BatchUpdateMemoryRecordsCommand = async (output, context) => {
|
|
1164
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1165
|
-
return de_CommandError(output, context);
|
|
1166
|
-
}
|
|
1167
|
-
const contents = smithyClient.map({
|
|
1168
|
-
$metadata: deserializeMetadata(output),
|
|
1169
|
-
});
|
|
1170
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1171
|
-
const doc = smithyClient.take(data, {
|
|
1172
|
-
failedRecords: smithyClient._json,
|
|
1173
|
-
successfulRecords: smithyClient._json,
|
|
1174
|
-
});
|
|
1175
|
-
Object.assign(contents, doc);
|
|
1176
|
-
return contents;
|
|
1177
|
-
};
|
|
1178
|
-
const de_CompleteResourceTokenAuthCommand = async (output, context) => {
|
|
1179
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1180
|
-
return de_CommandError(output, context);
|
|
1181
|
-
}
|
|
1182
|
-
const contents = smithyClient.map({
|
|
1183
|
-
$metadata: deserializeMetadata(output),
|
|
1184
|
-
});
|
|
1185
|
-
await smithyClient.collectBody(output.body, context);
|
|
1186
|
-
return contents;
|
|
1187
|
-
};
|
|
1188
|
-
const de_CreateEventCommand = async (output, context) => {
|
|
1189
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1190
|
-
return de_CommandError(output, context);
|
|
1191
|
-
}
|
|
1192
|
-
const contents = smithyClient.map({
|
|
1193
|
-
$metadata: deserializeMetadata(output),
|
|
1194
|
-
});
|
|
1195
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1196
|
-
const doc = smithyClient.take(data, {
|
|
1197
|
-
event: (_) => de_Event(_),
|
|
1198
|
-
});
|
|
1199
|
-
Object.assign(contents, doc);
|
|
1200
|
-
return contents;
|
|
1201
|
-
};
|
|
1202
|
-
const de_DeleteEventCommand = async (output, context) => {
|
|
1203
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1204
|
-
return de_CommandError(output, context);
|
|
1205
|
-
}
|
|
1206
|
-
const contents = smithyClient.map({
|
|
1207
|
-
$metadata: deserializeMetadata(output),
|
|
1208
|
-
});
|
|
1209
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1210
|
-
const doc = smithyClient.take(data, {
|
|
1211
|
-
eventId: smithyClient.expectString,
|
|
1212
|
-
});
|
|
1213
|
-
Object.assign(contents, doc);
|
|
1214
|
-
return contents;
|
|
1215
|
-
};
|
|
1216
|
-
const de_DeleteMemoryRecordCommand = async (output, context) => {
|
|
1217
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1218
|
-
return de_CommandError(output, context);
|
|
1219
|
-
}
|
|
1220
|
-
const contents = smithyClient.map({
|
|
1221
|
-
$metadata: deserializeMetadata(output),
|
|
1222
|
-
});
|
|
1223
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1224
|
-
const doc = smithyClient.take(data, {
|
|
1225
|
-
memoryRecordId: smithyClient.expectString,
|
|
1226
|
-
});
|
|
1227
|
-
Object.assign(contents, doc);
|
|
1228
|
-
return contents;
|
|
1229
|
-
};
|
|
1230
|
-
const de_GetAgentCardCommand = async (output, context) => {
|
|
1231
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1232
|
-
return de_CommandError(output, context);
|
|
1233
|
-
}
|
|
1234
|
-
const contents = smithyClient.map({
|
|
1235
|
-
$metadata: deserializeMetadata(output),
|
|
1236
|
-
[_rSI]: [, output.headers[_xabarsi]],
|
|
1237
|
-
});
|
|
1238
|
-
const data = await collectBodyString(output.body, context);
|
|
1239
|
-
contents.agentCard = data;
|
|
1240
|
-
contents.agentCard = JSON.parse(data);
|
|
1241
|
-
smithyClient.map(contents, {
|
|
1242
|
-
statusCode: [, output.statusCode],
|
|
1243
|
-
});
|
|
1244
|
-
return contents;
|
|
1245
|
-
};
|
|
1246
|
-
const de_GetBrowserSessionCommand = async (output, context) => {
|
|
1247
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1248
|
-
return de_CommandError(output, context);
|
|
1249
|
-
}
|
|
1250
|
-
const contents = smithyClient.map({
|
|
1251
|
-
$metadata: deserializeMetadata(output),
|
|
1252
|
-
});
|
|
1253
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1254
|
-
const doc = smithyClient.take(data, {
|
|
1255
|
-
browserIdentifier: smithyClient.expectString,
|
|
1256
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1257
|
-
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1258
|
-
name: smithyClient.expectString,
|
|
1259
|
-
sessionId: smithyClient.expectString,
|
|
1260
|
-
sessionReplayArtifact: smithyClient.expectString,
|
|
1261
|
-
sessionTimeoutSeconds: smithyClient.expectInt32,
|
|
1262
|
-
status: smithyClient.expectString,
|
|
1263
|
-
streams: smithyClient._json,
|
|
1264
|
-
viewPort: smithyClient._json,
|
|
1265
|
-
});
|
|
1266
|
-
Object.assign(contents, doc);
|
|
1267
|
-
return contents;
|
|
1268
|
-
};
|
|
1269
|
-
const de_GetCodeInterpreterSessionCommand = async (output, context) => {
|
|
1270
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1271
|
-
return de_CommandError(output, context);
|
|
1272
|
-
}
|
|
1273
|
-
const contents = smithyClient.map({
|
|
1274
|
-
$metadata: deserializeMetadata(output),
|
|
1275
|
-
});
|
|
1276
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1277
|
-
const doc = smithyClient.take(data, {
|
|
1278
|
-
codeInterpreterIdentifier: smithyClient.expectString,
|
|
1279
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1280
|
-
name: smithyClient.expectString,
|
|
1281
|
-
sessionId: smithyClient.expectString,
|
|
1282
|
-
sessionTimeoutSeconds: smithyClient.expectInt32,
|
|
1283
|
-
status: smithyClient.expectString,
|
|
1284
|
-
});
|
|
1285
|
-
Object.assign(contents, doc);
|
|
1286
|
-
return contents;
|
|
1287
|
-
};
|
|
1288
|
-
const de_GetEventCommand = async (output, context) => {
|
|
1289
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1290
|
-
return de_CommandError(output, context);
|
|
1291
|
-
}
|
|
1292
|
-
const contents = smithyClient.map({
|
|
1293
|
-
$metadata: deserializeMetadata(output),
|
|
1294
|
-
});
|
|
1295
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1296
|
-
const doc = smithyClient.take(data, {
|
|
1297
|
-
event: (_) => de_Event(_),
|
|
1298
|
-
});
|
|
1299
|
-
Object.assign(contents, doc);
|
|
1300
|
-
return contents;
|
|
1301
|
-
};
|
|
1302
|
-
const de_GetMemoryRecordCommand = async (output, context) => {
|
|
1303
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1304
|
-
return de_CommandError(output, context);
|
|
1305
|
-
}
|
|
1306
|
-
const contents = smithyClient.map({
|
|
1307
|
-
$metadata: deserializeMetadata(output),
|
|
1308
|
-
});
|
|
1309
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1310
|
-
const doc = smithyClient.take(data, {
|
|
1311
|
-
memoryRecord: (_) => de_MemoryRecord(_),
|
|
1312
|
-
});
|
|
1313
|
-
Object.assign(contents, doc);
|
|
1314
|
-
return contents;
|
|
1315
|
-
};
|
|
1316
|
-
const de_GetResourceApiKeyCommand = async (output, context) => {
|
|
1317
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1318
|
-
return de_CommandError(output, context);
|
|
1319
|
-
}
|
|
1320
|
-
const contents = smithyClient.map({
|
|
1321
|
-
$metadata: deserializeMetadata(output),
|
|
1322
|
-
});
|
|
1323
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1324
|
-
const doc = smithyClient.take(data, {
|
|
1325
|
-
apiKey: smithyClient.expectString,
|
|
1326
|
-
});
|
|
1327
|
-
Object.assign(contents, doc);
|
|
1328
|
-
return contents;
|
|
1329
|
-
};
|
|
1330
|
-
const de_GetResourceOauth2TokenCommand = async (output, context) => {
|
|
1331
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1332
|
-
return de_CommandError(output, context);
|
|
1333
|
-
}
|
|
1334
|
-
const contents = smithyClient.map({
|
|
1335
|
-
$metadata: deserializeMetadata(output),
|
|
1336
|
-
});
|
|
1337
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1338
|
-
const doc = smithyClient.take(data, {
|
|
1339
|
-
accessToken: smithyClient.expectString,
|
|
1340
|
-
authorizationUrl: smithyClient.expectString,
|
|
1341
|
-
sessionStatus: smithyClient.expectString,
|
|
1342
|
-
sessionUri: smithyClient.expectString,
|
|
1343
|
-
});
|
|
1344
|
-
Object.assign(contents, doc);
|
|
1345
|
-
return contents;
|
|
1346
|
-
};
|
|
1347
|
-
const de_GetWorkloadAccessTokenCommand = async (output, context) => {
|
|
1348
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1349
|
-
return de_CommandError(output, context);
|
|
1350
|
-
}
|
|
1351
|
-
const contents = smithyClient.map({
|
|
1352
|
-
$metadata: deserializeMetadata(output),
|
|
1353
|
-
});
|
|
1354
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1355
|
-
const doc = smithyClient.take(data, {
|
|
1356
|
-
workloadAccessToken: smithyClient.expectString,
|
|
1357
|
-
});
|
|
1358
|
-
Object.assign(contents, doc);
|
|
1359
|
-
return contents;
|
|
1360
|
-
};
|
|
1361
|
-
const de_GetWorkloadAccessTokenForJWTCommand = async (output, context) => {
|
|
1362
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1363
|
-
return de_CommandError(output, context);
|
|
1364
|
-
}
|
|
1365
|
-
const contents = smithyClient.map({
|
|
1366
|
-
$metadata: deserializeMetadata(output),
|
|
1367
|
-
});
|
|
1368
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1369
|
-
const doc = smithyClient.take(data, {
|
|
1370
|
-
workloadAccessToken: smithyClient.expectString,
|
|
1371
|
-
});
|
|
1372
|
-
Object.assign(contents, doc);
|
|
1373
|
-
return contents;
|
|
1374
|
-
};
|
|
1375
|
-
const de_GetWorkloadAccessTokenForUserIdCommand = async (output, context) => {
|
|
1376
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1377
|
-
return de_CommandError(output, context);
|
|
1378
|
-
}
|
|
1379
|
-
const contents = smithyClient.map({
|
|
1380
|
-
$metadata: deserializeMetadata(output),
|
|
1381
|
-
});
|
|
1382
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1383
|
-
const doc = smithyClient.take(data, {
|
|
1384
|
-
workloadAccessToken: smithyClient.expectString,
|
|
1385
|
-
});
|
|
1386
|
-
Object.assign(contents, doc);
|
|
1387
|
-
return contents;
|
|
1388
|
-
};
|
|
1389
|
-
const de_InvokeAgentRuntimeCommand = async (output, context) => {
|
|
1390
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1391
|
-
return de_CommandError(output, context);
|
|
1392
|
-
}
|
|
1393
|
-
const contents = smithyClient.map({
|
|
1394
|
-
$metadata: deserializeMetadata(output),
|
|
1395
|
-
[_rSI]: [, output.headers[_xabarsi]],
|
|
1396
|
-
[_mSI]: [, output.headers[_msi]],
|
|
1397
|
-
[_mPV]: [, output.headers[_mpv]],
|
|
1398
|
-
[_tI]: [, output.headers[_xati]],
|
|
1399
|
-
[_tP]: [, output.headers[_t]],
|
|
1400
|
-
[_tS]: [, output.headers[_tr]],
|
|
1401
|
-
[_b]: [, output.headers[_b]],
|
|
1402
|
-
[_cT]: [, output.headers[_ct]],
|
|
1403
|
-
});
|
|
1404
|
-
const data = output.body;
|
|
1405
|
-
context.sdkStreamMixin(data);
|
|
1406
|
-
contents.response = data;
|
|
1407
|
-
smithyClient.map(contents, {
|
|
1408
|
-
statusCode: [, output.statusCode],
|
|
1409
|
-
});
|
|
1410
|
-
return contents;
|
|
1411
|
-
};
|
|
1412
|
-
const de_InvokeCodeInterpreterCommand = async (output, context) => {
|
|
1413
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1414
|
-
return de_CommandError(output, context);
|
|
1415
|
-
}
|
|
1416
|
-
const contents = smithyClient.map({
|
|
1417
|
-
$metadata: deserializeMetadata(output),
|
|
1418
|
-
[_sI]: [, output.headers[_xacisi]],
|
|
1419
|
-
});
|
|
1420
|
-
const data = output.body;
|
|
1421
|
-
contents.stream = de_CodeInterpreterStreamOutput(data, context);
|
|
1422
|
-
return contents;
|
|
1423
|
-
};
|
|
1424
|
-
const de_ListActorsCommand = async (output, context) => {
|
|
1425
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1426
|
-
return de_CommandError(output, context);
|
|
1427
|
-
}
|
|
1428
|
-
const contents = smithyClient.map({
|
|
1429
|
-
$metadata: deserializeMetadata(output),
|
|
1430
|
-
});
|
|
1431
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1432
|
-
const doc = smithyClient.take(data, {
|
|
1433
|
-
actorSummaries: smithyClient._json,
|
|
1434
|
-
nextToken: smithyClient.expectString,
|
|
1435
|
-
});
|
|
1436
|
-
Object.assign(contents, doc);
|
|
1437
|
-
return contents;
|
|
1438
|
-
};
|
|
1439
|
-
const de_ListBrowserSessionsCommand = async (output, context) => {
|
|
1440
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1441
|
-
return de_CommandError(output, context);
|
|
1442
|
-
}
|
|
1443
|
-
const contents = smithyClient.map({
|
|
1444
|
-
$metadata: deserializeMetadata(output),
|
|
1445
|
-
});
|
|
1446
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1447
|
-
const doc = smithyClient.take(data, {
|
|
1448
|
-
items: (_) => de_BrowserSessionSummaries(_),
|
|
1449
|
-
nextToken: smithyClient.expectString,
|
|
1450
|
-
});
|
|
1451
|
-
Object.assign(contents, doc);
|
|
1452
|
-
return contents;
|
|
1453
|
-
};
|
|
1454
|
-
const de_ListCodeInterpreterSessionsCommand = async (output, context) => {
|
|
1455
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1456
|
-
return de_CommandError(output, context);
|
|
1457
|
-
}
|
|
1458
|
-
const contents = smithyClient.map({
|
|
1459
|
-
$metadata: deserializeMetadata(output),
|
|
1460
|
-
});
|
|
1461
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1462
|
-
const doc = smithyClient.take(data, {
|
|
1463
|
-
items: (_) => de_CodeInterpreterSessionSummaries(_),
|
|
1464
|
-
nextToken: smithyClient.expectString,
|
|
1465
|
-
});
|
|
1466
|
-
Object.assign(contents, doc);
|
|
1467
|
-
return contents;
|
|
1468
|
-
};
|
|
1469
|
-
const de_ListEventsCommand = async (output, context) => {
|
|
1470
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1471
|
-
return de_CommandError(output, context);
|
|
1472
|
-
}
|
|
1473
|
-
const contents = smithyClient.map({
|
|
1474
|
-
$metadata: deserializeMetadata(output),
|
|
1475
|
-
});
|
|
1476
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1477
|
-
const doc = smithyClient.take(data, {
|
|
1478
|
-
events: (_) => de_EventList(_),
|
|
1479
|
-
nextToken: smithyClient.expectString,
|
|
1480
|
-
});
|
|
1481
|
-
Object.assign(contents, doc);
|
|
1482
|
-
return contents;
|
|
1483
|
-
};
|
|
1484
|
-
const de_ListMemoryRecordsCommand = async (output, context) => {
|
|
1485
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1486
|
-
return de_CommandError(output, context);
|
|
1487
|
-
}
|
|
1488
|
-
const contents = smithyClient.map({
|
|
1489
|
-
$metadata: deserializeMetadata(output),
|
|
1490
|
-
});
|
|
1491
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1492
|
-
const doc = smithyClient.take(data, {
|
|
1493
|
-
memoryRecordSummaries: (_) => de_MemoryRecordSummaryList(_),
|
|
1494
|
-
nextToken: smithyClient.expectString,
|
|
1495
|
-
});
|
|
1496
|
-
Object.assign(contents, doc);
|
|
1497
|
-
return contents;
|
|
1498
|
-
};
|
|
1499
|
-
const de_ListSessionsCommand = async (output, context) => {
|
|
1500
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1501
|
-
return de_CommandError(output, context);
|
|
1502
|
-
}
|
|
1503
|
-
const contents = smithyClient.map({
|
|
1504
|
-
$metadata: deserializeMetadata(output),
|
|
1505
|
-
});
|
|
1506
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1507
|
-
const doc = smithyClient.take(data, {
|
|
1508
|
-
nextToken: smithyClient.expectString,
|
|
1509
|
-
sessionSummaries: (_) => de_SessionSummaryList(_),
|
|
1510
|
-
});
|
|
1511
|
-
Object.assign(contents, doc);
|
|
1512
|
-
return contents;
|
|
1513
|
-
};
|
|
1514
|
-
const de_RetrieveMemoryRecordsCommand = async (output, context) => {
|
|
1515
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1516
|
-
return de_CommandError(output, context);
|
|
1517
|
-
}
|
|
1518
|
-
const contents = smithyClient.map({
|
|
1519
|
-
$metadata: deserializeMetadata(output),
|
|
1520
|
-
});
|
|
1521
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1522
|
-
const doc = smithyClient.take(data, {
|
|
1523
|
-
memoryRecordSummaries: (_) => de_MemoryRecordSummaryList(_),
|
|
1524
|
-
nextToken: smithyClient.expectString,
|
|
1525
|
-
});
|
|
1526
|
-
Object.assign(contents, doc);
|
|
1527
|
-
return contents;
|
|
1528
|
-
};
|
|
1529
|
-
const de_StartBrowserSessionCommand = async (output, context) => {
|
|
1530
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1531
|
-
return de_CommandError(output, context);
|
|
1532
|
-
}
|
|
1533
|
-
const contents = smithyClient.map({
|
|
1534
|
-
$metadata: deserializeMetadata(output),
|
|
1535
|
-
});
|
|
1536
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1537
|
-
const doc = smithyClient.take(data, {
|
|
1538
|
-
browserIdentifier: smithyClient.expectString,
|
|
1539
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1540
|
-
sessionId: smithyClient.expectString,
|
|
1541
|
-
streams: smithyClient._json,
|
|
1542
|
-
});
|
|
1543
|
-
Object.assign(contents, doc);
|
|
1544
|
-
return contents;
|
|
1545
|
-
};
|
|
1546
|
-
const de_StartCodeInterpreterSessionCommand = async (output, context) => {
|
|
1547
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1548
|
-
return de_CommandError(output, context);
|
|
1549
|
-
}
|
|
1550
|
-
const contents = smithyClient.map({
|
|
1551
|
-
$metadata: deserializeMetadata(output),
|
|
1552
|
-
});
|
|
1553
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1554
|
-
const doc = smithyClient.take(data, {
|
|
1555
|
-
codeInterpreterIdentifier: smithyClient.expectString,
|
|
1556
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1557
|
-
sessionId: smithyClient.expectString,
|
|
1558
|
-
});
|
|
1559
|
-
Object.assign(contents, doc);
|
|
1560
|
-
return contents;
|
|
1561
|
-
};
|
|
1562
|
-
const de_StopBrowserSessionCommand = async (output, context) => {
|
|
1563
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1564
|
-
return de_CommandError(output, context);
|
|
1565
|
-
}
|
|
1566
|
-
const contents = smithyClient.map({
|
|
1567
|
-
$metadata: deserializeMetadata(output),
|
|
1568
|
-
});
|
|
1569
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1570
|
-
const doc = smithyClient.take(data, {
|
|
1571
|
-
browserIdentifier: smithyClient.expectString,
|
|
1572
|
-
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1573
|
-
sessionId: smithyClient.expectString,
|
|
1574
|
-
});
|
|
1575
|
-
Object.assign(contents, doc);
|
|
1576
|
-
return contents;
|
|
1577
|
-
};
|
|
1578
|
-
const de_StopCodeInterpreterSessionCommand = async (output, context) => {
|
|
1579
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1580
|
-
return de_CommandError(output, context);
|
|
1581
|
-
}
|
|
1582
|
-
const contents = smithyClient.map({
|
|
1583
|
-
$metadata: deserializeMetadata(output),
|
|
1584
|
-
});
|
|
1585
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1586
|
-
const doc = smithyClient.take(data, {
|
|
1587
|
-
codeInterpreterIdentifier: smithyClient.expectString,
|
|
1588
|
-
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1589
|
-
sessionId: smithyClient.expectString,
|
|
1590
|
-
});
|
|
1591
|
-
Object.assign(contents, doc);
|
|
1592
|
-
return contents;
|
|
1593
|
-
};
|
|
1594
|
-
const de_StopRuntimeSessionCommand = async (output, context) => {
|
|
1595
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1596
|
-
return de_CommandError(output, context);
|
|
1597
|
-
}
|
|
1598
|
-
const contents = smithyClient.map({
|
|
1599
|
-
$metadata: deserializeMetadata(output),
|
|
1600
|
-
[_rSI]: [, output.headers[_xabarsi]],
|
|
1601
|
-
});
|
|
1602
|
-
smithyClient.map(contents, {
|
|
1603
|
-
statusCode: [, output.statusCode],
|
|
1604
|
-
});
|
|
1605
|
-
await smithyClient.collectBody(output.body, context);
|
|
1606
|
-
return contents;
|
|
1607
|
-
};
|
|
1608
|
-
const de_UpdateBrowserStreamCommand = async (output, context) => {
|
|
1609
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1610
|
-
return de_CommandError(output, context);
|
|
1611
|
-
}
|
|
1612
|
-
const contents = smithyClient.map({
|
|
1613
|
-
$metadata: deserializeMetadata(output),
|
|
1614
|
-
});
|
|
1615
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1616
|
-
const doc = smithyClient.take(data, {
|
|
1617
|
-
browserIdentifier: smithyClient.expectString,
|
|
1618
|
-
sessionId: smithyClient.expectString,
|
|
1619
|
-
streams: smithyClient._json,
|
|
1620
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1621
|
-
});
|
|
1622
|
-
Object.assign(contents, doc);
|
|
1623
|
-
return contents;
|
|
1624
|
-
};
|
|
1625
|
-
const de_CommandError = async (output, context) => {
|
|
1626
|
-
const parsedOutput = {
|
|
1627
|
-
...output,
|
|
1628
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1629
|
-
};
|
|
1630
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1631
|
-
switch (errorCode) {
|
|
1632
|
-
case "AccessDeniedException":
|
|
1633
|
-
case "com.amazonaws.bedrockagentcore#AccessDeniedException":
|
|
1634
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1635
|
-
case "ResourceNotFoundException":
|
|
1636
|
-
case "com.amazonaws.bedrockagentcore#ResourceNotFoundException":
|
|
1637
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1638
|
-
case "ServiceException":
|
|
1639
|
-
case "com.amazonaws.bedrockagentcore#ServiceException":
|
|
1640
|
-
throw await de_ServiceExceptionRes(parsedOutput);
|
|
1641
|
-
case "ServiceQuotaExceededException":
|
|
1642
|
-
case "com.amazonaws.bedrockagentcore#ServiceQuotaExceededException":
|
|
1643
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1644
|
-
case "ThrottledException":
|
|
1645
|
-
case "com.amazonaws.bedrockagentcore#ThrottledException":
|
|
1646
|
-
throw await de_ThrottledExceptionRes(parsedOutput);
|
|
1647
|
-
case "ValidationException":
|
|
1648
|
-
case "com.amazonaws.bedrockagentcore#ValidationException":
|
|
1649
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1650
|
-
case "InternalServerException":
|
|
1651
|
-
case "com.amazonaws.bedrockagentcore#InternalServerException":
|
|
1652
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1653
|
-
case "ThrottlingException":
|
|
1654
|
-
case "com.amazonaws.bedrockagentcore#ThrottlingException":
|
|
1655
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1656
|
-
case "UnauthorizedException":
|
|
1657
|
-
case "com.amazonaws.bedrockagentcore#UnauthorizedException":
|
|
1658
|
-
throw await de_UnauthorizedExceptionRes(parsedOutput);
|
|
1659
|
-
case "InvalidInputException":
|
|
1660
|
-
case "com.amazonaws.bedrockagentcore#InvalidInputException":
|
|
1661
|
-
throw await de_InvalidInputExceptionRes(parsedOutput);
|
|
1662
|
-
case "RuntimeClientError":
|
|
1663
|
-
case "com.amazonaws.bedrockagentcore#RuntimeClientError":
|
|
1664
|
-
throw await de_RuntimeClientErrorRes(parsedOutput);
|
|
1665
|
-
case "ConflictException":
|
|
1666
|
-
case "com.amazonaws.bedrockagentcore#ConflictException":
|
|
1667
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1668
|
-
default:
|
|
1669
|
-
const parsedBody = parsedOutput.body;
|
|
1670
|
-
return throwDefaultError({
|
|
1671
|
-
output,
|
|
1672
|
-
parsedBody,
|
|
1673
|
-
errorCode,
|
|
1674
|
-
});
|
|
1675
|
-
}
|
|
1676
|
-
};
|
|
1677
|
-
const throwDefaultError = smithyClient.withBaseException(BedrockAgentCoreServiceException);
|
|
1678
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1679
|
-
const contents = smithyClient.map({});
|
|
1680
|
-
const data = parsedOutput.body;
|
|
1681
|
-
const doc = smithyClient.take(data, {
|
|
1682
|
-
message: smithyClient.expectString,
|
|
1683
|
-
});
|
|
1684
|
-
Object.assign(contents, doc);
|
|
1685
|
-
const exception = new AccessDeniedException({
|
|
1686
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1687
|
-
...contents,
|
|
1688
|
-
});
|
|
1689
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1690
|
-
};
|
|
1691
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1692
|
-
const contents = smithyClient.map({});
|
|
1693
|
-
const data = parsedOutput.body;
|
|
1694
|
-
const doc = smithyClient.take(data, {
|
|
1695
|
-
message: smithyClient.expectString,
|
|
1696
|
-
});
|
|
1697
|
-
Object.assign(contents, doc);
|
|
1698
|
-
const exception = new ConflictException({
|
|
1699
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1700
|
-
...contents,
|
|
1701
|
-
});
|
|
1702
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1703
|
-
};
|
|
1704
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1705
|
-
const contents = smithyClient.map({});
|
|
1706
|
-
const data = parsedOutput.body;
|
|
1707
|
-
const doc = smithyClient.take(data, {
|
|
1708
|
-
message: smithyClient.expectString,
|
|
1709
|
-
});
|
|
1710
|
-
Object.assign(contents, doc);
|
|
1711
|
-
const exception = new InternalServerException({
|
|
1712
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1713
|
-
...contents,
|
|
1714
|
-
});
|
|
1715
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1716
|
-
};
|
|
1717
|
-
const de_InvalidInputExceptionRes = async (parsedOutput, context) => {
|
|
1718
|
-
const contents = smithyClient.map({});
|
|
1719
|
-
const data = parsedOutput.body;
|
|
1720
|
-
const doc = smithyClient.take(data, {
|
|
1721
|
-
message: smithyClient.expectString,
|
|
1722
|
-
});
|
|
1723
|
-
Object.assign(contents, doc);
|
|
1724
|
-
const exception = new InvalidInputException({
|
|
1725
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1726
|
-
...contents,
|
|
1727
|
-
});
|
|
1728
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1729
|
-
};
|
|
1730
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1731
|
-
const contents = smithyClient.map({});
|
|
1732
|
-
const data = parsedOutput.body;
|
|
1733
|
-
const doc = smithyClient.take(data, {
|
|
1734
|
-
message: smithyClient.expectString,
|
|
1735
|
-
});
|
|
1736
|
-
Object.assign(contents, doc);
|
|
1737
|
-
const exception = new ResourceNotFoundException({
|
|
1738
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1739
|
-
...contents,
|
|
1740
|
-
});
|
|
1741
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1742
|
-
};
|
|
1743
|
-
const de_RuntimeClientErrorRes = async (parsedOutput, context) => {
|
|
1744
|
-
const contents = smithyClient.map({});
|
|
1745
|
-
const data = parsedOutput.body;
|
|
1746
|
-
const doc = smithyClient.take(data, {
|
|
1747
|
-
message: smithyClient.expectString,
|
|
1748
|
-
});
|
|
1749
|
-
Object.assign(contents, doc);
|
|
1750
|
-
const exception = new RuntimeClientError({
|
|
1751
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1752
|
-
...contents,
|
|
1753
|
-
});
|
|
1754
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1755
|
-
};
|
|
1756
|
-
const de_ServiceExceptionRes = async (parsedOutput, context) => {
|
|
1757
|
-
const contents = smithyClient.map({});
|
|
1758
|
-
const data = parsedOutput.body;
|
|
1759
|
-
const doc = smithyClient.take(data, {
|
|
1760
|
-
message: smithyClient.expectString,
|
|
1761
|
-
});
|
|
1762
|
-
Object.assign(contents, doc);
|
|
1763
|
-
const exception = new ServiceException({
|
|
1764
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1765
|
-
...contents,
|
|
1766
|
-
});
|
|
1767
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1768
|
-
};
|
|
1769
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1770
|
-
const contents = smithyClient.map({});
|
|
1771
|
-
const data = parsedOutput.body;
|
|
1772
|
-
const doc = smithyClient.take(data, {
|
|
1773
|
-
message: smithyClient.expectString,
|
|
1774
|
-
});
|
|
1775
|
-
Object.assign(contents, doc);
|
|
1776
|
-
const exception = new ServiceQuotaExceededException({
|
|
1777
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1778
|
-
...contents,
|
|
1779
|
-
});
|
|
1780
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1781
|
-
};
|
|
1782
|
-
const de_ThrottledExceptionRes = async (parsedOutput, context) => {
|
|
1783
|
-
const contents = smithyClient.map({});
|
|
1784
|
-
const data = parsedOutput.body;
|
|
1785
|
-
const doc = smithyClient.take(data, {
|
|
1786
|
-
message: smithyClient.expectString,
|
|
1787
|
-
});
|
|
1788
|
-
Object.assign(contents, doc);
|
|
1789
|
-
const exception = new ThrottledException({
|
|
1790
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1791
|
-
...contents,
|
|
1792
|
-
});
|
|
1793
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1794
|
-
};
|
|
1795
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1796
|
-
const contents = smithyClient.map({});
|
|
1797
|
-
const data = parsedOutput.body;
|
|
1798
|
-
const doc = smithyClient.take(data, {
|
|
1799
|
-
message: smithyClient.expectString,
|
|
1800
|
-
});
|
|
1801
|
-
Object.assign(contents, doc);
|
|
1802
|
-
const exception = new ThrottlingException({
|
|
1803
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1804
|
-
...contents,
|
|
1805
|
-
});
|
|
1806
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1807
|
-
};
|
|
1808
|
-
const de_UnauthorizedExceptionRes = async (parsedOutput, context) => {
|
|
1809
|
-
const contents = smithyClient.map({});
|
|
1810
|
-
const data = parsedOutput.body;
|
|
1811
|
-
const doc = smithyClient.take(data, {
|
|
1812
|
-
message: smithyClient.expectString,
|
|
1813
|
-
});
|
|
1814
|
-
Object.assign(contents, doc);
|
|
1815
|
-
const exception = new UnauthorizedException({
|
|
1816
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1817
|
-
...contents,
|
|
1818
|
-
});
|
|
1819
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1820
|
-
};
|
|
1821
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1822
|
-
const contents = smithyClient.map({});
|
|
1823
|
-
const data = parsedOutput.body;
|
|
1824
|
-
const doc = smithyClient.take(data, {
|
|
1825
|
-
fieldList: smithyClient._json,
|
|
1826
|
-
message: smithyClient.expectString,
|
|
1827
|
-
reason: smithyClient.expectString,
|
|
1828
|
-
});
|
|
1829
|
-
Object.assign(contents, doc);
|
|
1830
|
-
const exception = new ValidationException({
|
|
1831
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1832
|
-
...contents,
|
|
1833
|
-
});
|
|
1834
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1835
|
-
};
|
|
1836
|
-
const de_CodeInterpreterStreamOutput = (output, context) => {
|
|
1837
|
-
return context.eventStreamMarshaller.deserialize(output, async (event) => {
|
|
1838
|
-
if (event["result"] != null) {
|
|
1839
|
-
return {
|
|
1840
|
-
result: await de_CodeInterpreterResult_event(event["result"], context),
|
|
1841
|
-
};
|
|
1842
|
-
}
|
|
1843
|
-
if (event["accessDeniedException"] != null) {
|
|
1844
|
-
return {
|
|
1845
|
-
accessDeniedException: await de_AccessDeniedException_event(event["accessDeniedException"], context),
|
|
1846
|
-
};
|
|
1847
|
-
}
|
|
1848
|
-
if (event["conflictException"] != null) {
|
|
1849
|
-
return {
|
|
1850
|
-
conflictException: await de_ConflictException_event(event["conflictException"], context),
|
|
1851
|
-
};
|
|
1852
|
-
}
|
|
1853
|
-
if (event["internalServerException"] != null) {
|
|
1854
|
-
return {
|
|
1855
|
-
internalServerException: await de_InternalServerException_event(event["internalServerException"], context),
|
|
1856
|
-
};
|
|
1857
|
-
}
|
|
1858
|
-
if (event["resourceNotFoundException"] != null) {
|
|
1859
|
-
return {
|
|
1860
|
-
resourceNotFoundException: await de_ResourceNotFoundException_event(event["resourceNotFoundException"], context),
|
|
1861
|
-
};
|
|
1862
|
-
}
|
|
1863
|
-
if (event["serviceQuotaExceededException"] != null) {
|
|
1864
|
-
return {
|
|
1865
|
-
serviceQuotaExceededException: await de_ServiceQuotaExceededException_event(event["serviceQuotaExceededException"], context),
|
|
1866
|
-
};
|
|
1867
|
-
}
|
|
1868
|
-
if (event["throttlingException"] != null) {
|
|
1869
|
-
return {
|
|
1870
|
-
throttlingException: await de_ThrottlingException_event(event["throttlingException"], context),
|
|
1871
|
-
};
|
|
1872
|
-
}
|
|
1873
|
-
if (event["validationException"] != null) {
|
|
1874
|
-
return {
|
|
1875
|
-
validationException: await de_ValidationException_event(event["validationException"], context),
|
|
1876
|
-
};
|
|
1877
|
-
}
|
|
1878
|
-
return { $unknown: event };
|
|
1879
|
-
});
|
|
1880
|
-
};
|
|
1881
|
-
const de_AccessDeniedException_event = async (output, context) => {
|
|
1882
|
-
const parsedOutput = {
|
|
1883
|
-
...output,
|
|
1884
|
-
body: await core$1.parseJsonBody(output.body, context),
|
|
1885
|
-
};
|
|
1886
|
-
return de_AccessDeniedExceptionRes(parsedOutput);
|
|
1887
|
-
};
|
|
1888
|
-
const de_CodeInterpreterResult_event = async (output, context) => {
|
|
1889
|
-
const contents = {};
|
|
1890
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
1891
|
-
Object.assign(contents, de_CodeInterpreterResult(data, context));
|
|
1892
|
-
return contents;
|
|
1893
|
-
};
|
|
1894
|
-
const de_ConflictException_event = async (output, context) => {
|
|
1895
|
-
const parsedOutput = {
|
|
1896
|
-
...output,
|
|
1897
|
-
body: await core$1.parseJsonBody(output.body, context),
|
|
1898
|
-
};
|
|
1899
|
-
return de_ConflictExceptionRes(parsedOutput);
|
|
1900
|
-
};
|
|
1901
|
-
const de_InternalServerException_event = async (output, context) => {
|
|
1902
|
-
const parsedOutput = {
|
|
1903
|
-
...output,
|
|
1904
|
-
body: await core$1.parseJsonBody(output.body, context),
|
|
1905
|
-
};
|
|
1906
|
-
return de_InternalServerExceptionRes(parsedOutput);
|
|
1907
|
-
};
|
|
1908
|
-
const de_ResourceNotFoundException_event = async (output, context) => {
|
|
1909
|
-
const parsedOutput = {
|
|
1910
|
-
...output,
|
|
1911
|
-
body: await core$1.parseJsonBody(output.body, context),
|
|
1912
|
-
};
|
|
1913
|
-
return de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1914
|
-
};
|
|
1915
|
-
const de_ServiceQuotaExceededException_event = async (output, context) => {
|
|
1916
|
-
const parsedOutput = {
|
|
1917
|
-
...output,
|
|
1918
|
-
body: await core$1.parseJsonBody(output.body, context),
|
|
1919
|
-
};
|
|
1920
|
-
return de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1921
|
-
};
|
|
1922
|
-
const de_ThrottlingException_event = async (output, context) => {
|
|
1923
|
-
const parsedOutput = {
|
|
1924
|
-
...output,
|
|
1925
|
-
body: await core$1.parseJsonBody(output.body, context),
|
|
1926
|
-
};
|
|
1927
|
-
return de_ThrottlingExceptionRes(parsedOutput);
|
|
1928
|
-
};
|
|
1929
|
-
const de_ValidationException_event = async (output, context) => {
|
|
1930
|
-
const parsedOutput = {
|
|
1931
|
-
...output,
|
|
1932
|
-
body: await core$1.parseJsonBody(output.body, context),
|
|
1933
|
-
};
|
|
1934
|
-
return de_ValidationExceptionRes(parsedOutput);
|
|
1935
|
-
};
|
|
1936
|
-
const se_Document = (input, context) => {
|
|
1937
|
-
return input;
|
|
1938
|
-
};
|
|
1939
|
-
const se_InputContentBlock = (input, context) => {
|
|
1940
|
-
return smithyClient.take(input, {
|
|
1941
|
-
blob: context.base64Encoder,
|
|
1942
|
-
path: [],
|
|
1943
|
-
text: [],
|
|
1944
|
-
});
|
|
1945
|
-
};
|
|
1946
|
-
const se_InputContentBlockList = (input, context) => {
|
|
1947
|
-
return input
|
|
1948
|
-
.filter((e) => e != null)
|
|
1949
|
-
.map((entry) => {
|
|
1950
|
-
return se_InputContentBlock(entry, context);
|
|
1951
|
-
});
|
|
1952
|
-
};
|
|
1953
|
-
const se_MemoryRecordCreateInput = (input, context) => {
|
|
1954
|
-
return smithyClient.take(input, {
|
|
1955
|
-
content: smithyClient._json,
|
|
1956
|
-
memoryStrategyId: [],
|
|
1957
|
-
namespaces: smithyClient._json,
|
|
1958
|
-
requestIdentifier: [],
|
|
1959
|
-
timestamp: (_) => _.getTime() / 1_000,
|
|
1960
|
-
});
|
|
1961
|
-
};
|
|
1962
|
-
const se_MemoryRecordsCreateInputList = (input, context) => {
|
|
1963
|
-
return input
|
|
1964
|
-
.filter((e) => e != null)
|
|
1965
|
-
.map((entry) => {
|
|
1966
|
-
return se_MemoryRecordCreateInput(entry);
|
|
1967
|
-
});
|
|
1968
|
-
};
|
|
1969
|
-
const se_MemoryRecordsUpdateInputList = (input, context) => {
|
|
1970
|
-
return input
|
|
1971
|
-
.filter((e) => e != null)
|
|
1972
|
-
.map((entry) => {
|
|
1973
|
-
return se_MemoryRecordUpdateInput(entry);
|
|
1974
|
-
});
|
|
1975
|
-
};
|
|
1976
|
-
const se_MemoryRecordUpdateInput = (input, context) => {
|
|
1977
|
-
return smithyClient.take(input, {
|
|
1978
|
-
content: smithyClient._json,
|
|
1979
|
-
memoryRecordId: [],
|
|
1980
|
-
memoryStrategyId: [],
|
|
1981
|
-
namespaces: smithyClient._json,
|
|
1982
|
-
timestamp: (_) => _.getTime() / 1_000,
|
|
1983
|
-
});
|
|
1984
|
-
};
|
|
1985
|
-
const se_PayloadType = (input, context) => {
|
|
1986
|
-
return exports.PayloadType.visit(input, {
|
|
1987
|
-
blob: (value) => ({ blob: se_Document(value) }),
|
|
1988
|
-
conversational: (value) => ({ conversational: smithyClient._json(value) }),
|
|
1989
|
-
_: (name, value) => ({ [name]: value }),
|
|
1990
|
-
});
|
|
1991
|
-
};
|
|
1992
|
-
const se_PayloadTypeList = (input, context) => {
|
|
1993
|
-
return input
|
|
1994
|
-
.filter((e) => e != null)
|
|
1995
|
-
.map((entry) => {
|
|
1996
|
-
return se_PayloadType(entry);
|
|
1997
|
-
});
|
|
1998
|
-
};
|
|
1999
|
-
const se_ToolArguments = (input, context) => {
|
|
2000
|
-
return smithyClient.take(input, {
|
|
2001
|
-
clearContext: [],
|
|
2002
|
-
code: [],
|
|
2003
|
-
command: [],
|
|
2004
|
-
content: (_) => se_InputContentBlockList(_, context),
|
|
2005
|
-
directoryPath: [],
|
|
2006
|
-
language: [],
|
|
2007
|
-
path: [],
|
|
2008
|
-
paths: smithyClient._json,
|
|
2009
|
-
taskId: [],
|
|
2010
|
-
});
|
|
2011
|
-
};
|
|
2012
|
-
const de_BrowserSessionSummaries = (output, context) => {
|
|
2013
|
-
const retVal = (output || [])
|
|
2014
|
-
.filter((e) => e != null)
|
|
2015
|
-
.map((entry) => {
|
|
2016
|
-
return de_BrowserSessionSummary(entry);
|
|
2017
|
-
});
|
|
2018
|
-
return retVal;
|
|
2019
|
-
};
|
|
2020
|
-
const de_BrowserSessionSummary = (output, context) => {
|
|
2021
|
-
return smithyClient.take(output, {
|
|
2022
|
-
browserIdentifier: smithyClient.expectString,
|
|
2023
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2024
|
-
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2025
|
-
name: smithyClient.expectString,
|
|
2026
|
-
sessionId: smithyClient.expectString,
|
|
2027
|
-
status: smithyClient.expectString,
|
|
2028
|
-
});
|
|
2029
|
-
};
|
|
2030
|
-
const de_CodeInterpreterResult = (output, context) => {
|
|
2031
|
-
return smithyClient.take(output, {
|
|
2032
|
-
content: (_) => de_ContentBlockList(_, context),
|
|
2033
|
-
isError: smithyClient.expectBoolean,
|
|
2034
|
-
structuredContent: (_) => de_ToolResultStructuredContent(_),
|
|
2035
|
-
});
|
|
2036
|
-
};
|
|
2037
|
-
const de_CodeInterpreterSessionSummaries = (output, context) => {
|
|
2038
|
-
const retVal = (output || [])
|
|
2039
|
-
.filter((e) => e != null)
|
|
2040
|
-
.map((entry) => {
|
|
2041
|
-
return de_CodeInterpreterSessionSummary(entry);
|
|
2042
|
-
});
|
|
2043
|
-
return retVal;
|
|
2044
|
-
};
|
|
2045
|
-
const de_CodeInterpreterSessionSummary = (output, context) => {
|
|
2046
|
-
return smithyClient.take(output, {
|
|
2047
|
-
codeInterpreterIdentifier: smithyClient.expectString,
|
|
2048
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2049
|
-
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2050
|
-
name: smithyClient.expectString,
|
|
2051
|
-
sessionId: smithyClient.expectString,
|
|
2052
|
-
status: smithyClient.expectString,
|
|
2053
|
-
});
|
|
2054
|
-
};
|
|
2055
|
-
const de_ContentBlock = (output, context) => {
|
|
2056
|
-
return smithyClient.take(output, {
|
|
2057
|
-
data: context.base64Decoder,
|
|
2058
|
-
description: smithyClient.expectString,
|
|
2059
|
-
mimeType: smithyClient.expectString,
|
|
2060
|
-
name: smithyClient.expectString,
|
|
2061
|
-
resource: (_) => de_ResourceContent(_, context),
|
|
2062
|
-
size: smithyClient.expectLong,
|
|
2063
|
-
text: smithyClient.expectString,
|
|
2064
|
-
type: smithyClient.expectString,
|
|
2065
|
-
uri: smithyClient.expectString,
|
|
2066
|
-
});
|
|
2067
|
-
};
|
|
2068
|
-
const de_ContentBlockList = (output, context) => {
|
|
2069
|
-
const retVal = (output || [])
|
|
2070
|
-
.filter((e) => e != null)
|
|
2071
|
-
.map((entry) => {
|
|
2072
|
-
return de_ContentBlock(entry, context);
|
|
2073
|
-
});
|
|
2074
|
-
return retVal;
|
|
2075
|
-
};
|
|
2076
|
-
const de_Document = (output, context) => {
|
|
2077
|
-
return output;
|
|
2078
|
-
};
|
|
2079
|
-
const de_Event = (output, context) => {
|
|
2080
|
-
return smithyClient.take(output, {
|
|
2081
|
-
actorId: smithyClient.expectString,
|
|
2082
|
-
branch: smithyClient._json,
|
|
2083
|
-
eventId: smithyClient.expectString,
|
|
2084
|
-
eventTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
2085
|
-
memoryId: smithyClient.expectString,
|
|
2086
|
-
metadata: smithyClient._json,
|
|
2087
|
-
payload: (_) => de_PayloadTypeList(_),
|
|
2088
|
-
sessionId: smithyClient.expectString,
|
|
2089
|
-
});
|
|
2090
|
-
};
|
|
2091
|
-
const de_EventList = (output, context) => {
|
|
2092
|
-
const retVal = (output || [])
|
|
2093
|
-
.filter((e) => e != null)
|
|
2094
|
-
.map((entry) => {
|
|
2095
|
-
return de_Event(entry);
|
|
2096
|
-
});
|
|
2097
|
-
return retVal;
|
|
2098
|
-
};
|
|
2099
|
-
const de_MemoryRecord = (output, context) => {
|
|
2100
|
-
return smithyClient.take(output, {
|
|
2101
|
-
content: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2102
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
2103
|
-
memoryRecordId: smithyClient.expectString,
|
|
2104
|
-
memoryStrategyId: smithyClient.expectString,
|
|
2105
|
-
namespaces: smithyClient._json,
|
|
2106
|
-
});
|
|
2107
|
-
};
|
|
2108
|
-
const de_MemoryRecordSummary = (output, context) => {
|
|
2109
|
-
return smithyClient.take(output, {
|
|
2110
|
-
content: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2111
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
2112
|
-
memoryRecordId: smithyClient.expectString,
|
|
2113
|
-
memoryStrategyId: smithyClient.expectString,
|
|
2114
|
-
namespaces: smithyClient._json,
|
|
2115
|
-
score: smithyClient.limitedParseDouble,
|
|
2116
|
-
});
|
|
2117
|
-
};
|
|
2118
|
-
const de_MemoryRecordSummaryList = (output, context) => {
|
|
2119
|
-
const retVal = (output || [])
|
|
2120
|
-
.filter((e) => e != null)
|
|
2121
|
-
.map((entry) => {
|
|
2122
|
-
return de_MemoryRecordSummary(entry);
|
|
2123
|
-
});
|
|
2124
|
-
return retVal;
|
|
2125
|
-
};
|
|
2126
|
-
const de_PayloadType = (output, context) => {
|
|
2127
|
-
if (output.blob != null) {
|
|
2128
|
-
return {
|
|
2129
|
-
blob: de_Document(output.blob),
|
|
2130
|
-
};
|
|
2131
|
-
}
|
|
2132
|
-
if (output.conversational != null) {
|
|
2133
|
-
return {
|
|
2134
|
-
conversational: smithyClient._json(output.conversational),
|
|
2135
|
-
};
|
|
2136
|
-
}
|
|
2137
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2138
|
-
};
|
|
2139
|
-
const de_PayloadTypeList = (output, context) => {
|
|
2140
|
-
const retVal = (output || [])
|
|
2141
|
-
.filter((e) => e != null)
|
|
2142
|
-
.map((entry) => {
|
|
2143
|
-
return de_PayloadType(core$1.awsExpectUnion(entry));
|
|
2144
|
-
});
|
|
2145
|
-
return retVal;
|
|
2146
|
-
};
|
|
2147
|
-
const de_ResourceContent = (output, context) => {
|
|
2148
|
-
return smithyClient.take(output, {
|
|
2149
|
-
blob: context.base64Decoder,
|
|
2150
|
-
mimeType: smithyClient.expectString,
|
|
2151
|
-
text: smithyClient.expectString,
|
|
2152
|
-
type: smithyClient.expectString,
|
|
2153
|
-
uri: smithyClient.expectString,
|
|
2154
|
-
});
|
|
2155
|
-
};
|
|
2156
|
-
const de_SessionSummary = (output, context) => {
|
|
2157
|
-
return smithyClient.take(output, {
|
|
2158
|
-
actorId: smithyClient.expectString,
|
|
2159
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
2160
|
-
sessionId: smithyClient.expectString,
|
|
2161
|
-
});
|
|
2162
|
-
};
|
|
2163
|
-
const de_SessionSummaryList = (output, context) => {
|
|
2164
|
-
const retVal = (output || [])
|
|
2165
|
-
.filter((e) => e != null)
|
|
2166
|
-
.map((entry) => {
|
|
2167
|
-
return de_SessionSummary(entry);
|
|
2168
|
-
});
|
|
2169
|
-
return retVal;
|
|
2170
|
-
};
|
|
2171
|
-
const de_ToolResultStructuredContent = (output, context) => {
|
|
2172
|
-
return smithyClient.take(output, {
|
|
2173
|
-
executionTime: smithyClient.limitedParseDouble,
|
|
2174
|
-
exitCode: smithyClient.expectInt32,
|
|
2175
|
-
stderr: smithyClient.expectString,
|
|
2176
|
-
stdout: smithyClient.expectString,
|
|
2177
|
-
taskId: smithyClient.expectString,
|
|
2178
|
-
taskStatus: smithyClient.expectString,
|
|
2179
|
-
});
|
|
2180
|
-
};
|
|
2181
|
-
const deserializeMetadata = (output) => ({
|
|
2182
|
-
httpStatusCode: output.statusCode,
|
|
2183
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
2184
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
2185
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
2186
|
-
});
|
|
2187
|
-
const collectBodyString = (streamBody, context) => smithyClient.collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
346
|
+
const _A = "Accept";
|
|
347
|
+
const _ADE = "AccessDeniedException";
|
|
348
|
+
const _AKT = "ApiKeyType";
|
|
349
|
+
const _AS = "ActorSummary";
|
|
350
|
+
const _ASL = "ActorSummaryList";
|
|
351
|
+
const _ASU = "AutomationStreamUpdate";
|
|
352
|
+
const _ASu = "AutomationStream";
|
|
353
|
+
const _ATT = "AccessTokenType";
|
|
354
|
+
const _AUT = "AuthorizationUrlType";
|
|
355
|
+
const _B = "Body";
|
|
356
|
+
const _BCMR = "BatchCreateMemoryRecords";
|
|
357
|
+
const _BCMRI = "BatchCreateMemoryRecordsInput";
|
|
358
|
+
const _BCMRO = "BatchCreateMemoryRecordsOutput";
|
|
359
|
+
const _BDMR = "BatchDeleteMemoryRecords";
|
|
360
|
+
const _BDMRI = "BatchDeleteMemoryRecordsInput";
|
|
361
|
+
const _BDMRO = "BatchDeleteMemoryRecordsOutput";
|
|
362
|
+
const _BF = "BranchFilter";
|
|
363
|
+
const _BSS = "BrowserSessionStream";
|
|
364
|
+
const _BSSr = "BrowserSessionSummary";
|
|
365
|
+
const _BSSro = "BrowserSessionSummaries";
|
|
366
|
+
const _BUMR = "BatchUpdateMemoryRecords";
|
|
367
|
+
const _BUMRI = "BatchUpdateMemoryRecordsInput";
|
|
368
|
+
const _BUMRO = "BatchUpdateMemoryRecordsOutput";
|
|
369
|
+
const _Br = "Branch";
|
|
370
|
+
const _C = "Conversational";
|
|
371
|
+
const _CB = "ContentBlock";
|
|
372
|
+
const _CBL = "ContentBlockList";
|
|
373
|
+
const _CE = "ConflictException";
|
|
374
|
+
const _CEI = "CreateEventInput";
|
|
375
|
+
const _CEO = "CreateEventOutput";
|
|
376
|
+
const _CEr = "CreateEvent";
|
|
377
|
+
const _CIR = "CodeInterpreterResult";
|
|
378
|
+
const _CISO = "CodeInterpreterStreamOutput";
|
|
379
|
+
const _CISS = "CodeInterpreterSessionSummary";
|
|
380
|
+
const _CISSo = "CodeInterpreterSessionSummaries";
|
|
381
|
+
const _CRPT = "CustomRequestParametersType";
|
|
382
|
+
const _CRTA = "CompleteResourceTokenAuth";
|
|
383
|
+
const _CRTAR = "CompleteResourceTokenAuthRequest";
|
|
384
|
+
const _CRTARo = "CompleteResourceTokenAuthResponse";
|
|
385
|
+
const _CRVT = "CustomRequestValueType";
|
|
386
|
+
const _CT = "Content-Type";
|
|
387
|
+
const _Co = "Content";
|
|
388
|
+
const _DE = "DeleteEvent";
|
|
389
|
+
const _DEI = "DeleteEventInput";
|
|
390
|
+
const _DEO = "DeleteEventOutput";
|
|
391
|
+
const _DMR = "DeleteMemoryRecord";
|
|
392
|
+
const _DMRI = "DeleteMemoryRecordInput";
|
|
393
|
+
const _DMRO = "DeleteMemoryRecordOutput";
|
|
394
|
+
const _E = "Event";
|
|
395
|
+
const _EL = "EventList";
|
|
396
|
+
const _EMFE = "EventMetadataFilterExpression";
|
|
397
|
+
const _EMFL = "EventMetadataFilterList";
|
|
398
|
+
const _FI = "FilterInput";
|
|
399
|
+
const _GAC = "GetAgentCard";
|
|
400
|
+
const _GACR = "GetAgentCardRequest";
|
|
401
|
+
const _GACRe = "GetAgentCardResponse";
|
|
402
|
+
const _GBS = "GetBrowserSession";
|
|
403
|
+
const _GBSR = "GetBrowserSessionRequest";
|
|
404
|
+
const _GBSRe = "GetBrowserSessionResponse";
|
|
405
|
+
const _GCIS = "GetCodeInterpreterSession";
|
|
406
|
+
const _GCISR = "GetCodeInterpreterSessionRequest";
|
|
407
|
+
const _GCISRe = "GetCodeInterpreterSessionResponse";
|
|
408
|
+
const _GE = "GetEvent";
|
|
409
|
+
const _GEI = "GetEventInput";
|
|
410
|
+
const _GEO = "GetEventOutput";
|
|
411
|
+
const _GMR = "GetMemoryRecord";
|
|
412
|
+
const _GMRI = "GetMemoryRecordInput";
|
|
413
|
+
const _GMRO = "GetMemoryRecordOutput";
|
|
414
|
+
const _GRAK = "GetResourceApiKey";
|
|
415
|
+
const _GRAKR = "GetResourceApiKeyRequest";
|
|
416
|
+
const _GRAKRe = "GetResourceApiKeyResponse";
|
|
417
|
+
const _GROT = "GetResourceOauth2Token";
|
|
418
|
+
const _GROTR = "GetResourceOauth2TokenRequest";
|
|
419
|
+
const _GROTRe = "GetResourceOauth2TokenResponse";
|
|
420
|
+
const _GWAT = "GetWorkloadAccessToken";
|
|
421
|
+
const _GWATFJWT = "GetWorkloadAccessTokenForJWT";
|
|
422
|
+
const _GWATFJWTR = "GetWorkloadAccessTokenForJWTRequest";
|
|
423
|
+
const _GWATFJWTRe = "GetWorkloadAccessTokenForJWTResponse";
|
|
424
|
+
const _GWATFUI = "GetWorkloadAccessTokenForUserId";
|
|
425
|
+
const _GWATFUIR = "GetWorkloadAccessTokenForUserIdRequest";
|
|
426
|
+
const _GWATFUIRe = "GetWorkloadAccessTokenForUserIdResponse";
|
|
427
|
+
const _GWATR = "GetWorkloadAccessTokenRequest";
|
|
428
|
+
const _GWATRe = "GetWorkloadAccessTokenResponse";
|
|
429
|
+
const _IAR = "InvokeAgentRuntime";
|
|
430
|
+
const _IARR = "InvokeAgentRuntimeRequest";
|
|
431
|
+
const _IARRn = "InvokeAgentRuntimeResponse";
|
|
432
|
+
const _ICB = "InputContentBlock";
|
|
433
|
+
const _ICBL = "InputContentBlockList";
|
|
434
|
+
const _ICI = "InvokeCodeInterpreter";
|
|
435
|
+
const _ICIR = "InvokeCodeInterpreterRequest";
|
|
436
|
+
const _ICIRn = "InvokeCodeInterpreterResponse";
|
|
437
|
+
const _IIE = "InvalidInputException";
|
|
438
|
+
const _ISE = "InternalServerException";
|
|
439
|
+
const _LA = "ListActors";
|
|
440
|
+
const _LAI = "ListActorsInput";
|
|
441
|
+
const _LAO = "ListActorsOutput";
|
|
442
|
+
const _LBS = "ListBrowserSessions";
|
|
443
|
+
const _LBSR = "ListBrowserSessionsRequest";
|
|
444
|
+
const _LBSRi = "ListBrowserSessionsResponse";
|
|
445
|
+
const _LCIS = "ListCodeInterpreterSessions";
|
|
446
|
+
const _LCISR = "ListCodeInterpreterSessionsRequest";
|
|
447
|
+
const _LCISRi = "ListCodeInterpreterSessionsResponse";
|
|
448
|
+
const _LE = "LeftExpression";
|
|
449
|
+
const _LEI = "ListEventsInput";
|
|
450
|
+
const _LEO = "ListEventsOutput";
|
|
451
|
+
const _LEi = "ListEvents";
|
|
452
|
+
const _LMR = "ListMemoryRecords";
|
|
453
|
+
const _LMRI = "ListMemoryRecordsInput";
|
|
454
|
+
const _LMRO = "ListMemoryRecordsOutput";
|
|
455
|
+
const _LS = "ListSessions";
|
|
456
|
+
const _LSI = "ListSessionsInput";
|
|
457
|
+
const _LSO = "ListSessionsOutput";
|
|
458
|
+
const _LVS = "LiveViewStream";
|
|
459
|
+
const _MC = "MemoryContent";
|
|
460
|
+
const _MM = "MetadataMap";
|
|
461
|
+
const _MPV = "Mcp-Protocol-Version";
|
|
462
|
+
const _MR = "MemoryRecord";
|
|
463
|
+
const _MRCI = "MemoryRecordCreateInput";
|
|
464
|
+
const _MRCIL = "MemoryRecordsCreateInputList";
|
|
465
|
+
const _MRDI = "MemoryRecordDeleteInput";
|
|
466
|
+
const _MRDIL = "MemoryRecordsDeleteInputList";
|
|
467
|
+
const _MRO = "MemoryRecordOutput";
|
|
468
|
+
const _MROL = "MemoryRecordsOutputList";
|
|
469
|
+
const _MRS = "MemoryRecordSummary";
|
|
470
|
+
const _MRSL = "MemoryRecordSummaryList";
|
|
471
|
+
const _MRUI = "MemoryRecordUpdateInput";
|
|
472
|
+
const _MRUIL = "MemoryRecordsUpdateInputList";
|
|
473
|
+
const _MSI = "Mcp-Session-Id";
|
|
474
|
+
const _MV = "MetadataValue";
|
|
475
|
+
const _PT = "PayloadType";
|
|
476
|
+
const _PTL = "PayloadTypeList";
|
|
477
|
+
const _RC = "ResourceContent";
|
|
478
|
+
const _RCE = "RuntimeClientError";
|
|
479
|
+
const _RE = "RightExpression";
|
|
480
|
+
const _RMR = "RetrieveMemoryRecords";
|
|
481
|
+
const _RMRI = "RetrieveMemoryRecordsInput";
|
|
482
|
+
const _RMRO = "RetrieveMemoryRecordsOutput";
|
|
483
|
+
const _RNFE = "ResourceNotFoundException";
|
|
484
|
+
const _RS = "ResponseStream";
|
|
485
|
+
const _S = "State";
|
|
486
|
+
const _SBS = "StartBrowserSession";
|
|
487
|
+
const _SBSR = "StartBrowserSessionRequest";
|
|
488
|
+
const _SBSRt = "StartBrowserSessionResponse";
|
|
489
|
+
const _SBSRto = "StopBrowserSessionRequest";
|
|
490
|
+
const _SBSRtop = "StopBrowserSessionResponse";
|
|
491
|
+
const _SBSt = "StopBrowserSession";
|
|
492
|
+
const _SC = "SearchCriteria";
|
|
493
|
+
const _SCIS = "StartCodeInterpreterSession";
|
|
494
|
+
const _SCISR = "StartCodeInterpreterSessionRequest";
|
|
495
|
+
const _SCISRt = "StartCodeInterpreterSessionResponse";
|
|
496
|
+
const _SCISRto = "StopCodeInterpreterSessionRequest";
|
|
497
|
+
const _SCISRtop = "StopCodeInterpreterSessionResponse";
|
|
498
|
+
const _SCISt = "StopCodeInterpreterSession";
|
|
499
|
+
const _SE = "ServiceException";
|
|
500
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
501
|
+
const _SRS = "StopRuntimeSession";
|
|
502
|
+
const _SRSR = "StopRuntimeSessionRequest";
|
|
503
|
+
const _SRSRt = "StopRuntimeSessionResponse";
|
|
504
|
+
const _SS = "SensitiveString";
|
|
505
|
+
const _SSL = "SessionSummaryList";
|
|
506
|
+
const _SSe = "SessionSummary";
|
|
507
|
+
const _SU = "StreamUpdate";
|
|
508
|
+
const _TA = "ToolArguments";
|
|
509
|
+
const _TE = "ThrottledException";
|
|
510
|
+
const _TEh = "ThrottlingException";
|
|
511
|
+
const _TRSC = "ToolResultStructuredContent";
|
|
512
|
+
const _UBS = "UpdateBrowserStream";
|
|
513
|
+
const _UBSR = "UpdateBrowserStreamRequest";
|
|
514
|
+
const _UBSRp = "UpdateBrowserStreamResponse";
|
|
515
|
+
const _UE = "UnauthorizedException";
|
|
516
|
+
const _UI = "UserIdentifier";
|
|
517
|
+
const _UTT = "UserTokenType";
|
|
518
|
+
const _VE = "ValidationException";
|
|
519
|
+
const _VEF = "ValidationExceptionField";
|
|
520
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
521
|
+
const _VP = "ViewPort";
|
|
522
|
+
const _WITT = "WorkloadIdentityTokenType";
|
|
523
|
+
const _XABARSI = "X-Amzn-Bedrock-AgentCore-Runtime-Session-Id";
|
|
524
|
+
const _XABARUI = "X-Amzn-Bedrock-AgentCore-Runtime-User-Id";
|
|
525
|
+
const _XATI = "X-Amzn-Trace-Id";
|
|
2188
526
|
const _a = "accept";
|
|
2189
|
-
const
|
|
2190
|
-
const
|
|
2191
|
-
const
|
|
2192
|
-
const
|
|
527
|
+
const _aC = "agentCard";
|
|
528
|
+
const _aDE = "accessDeniedException";
|
|
529
|
+
const _aI = "actorId";
|
|
530
|
+
const _aIc = "accountId";
|
|
531
|
+
const _aK = "apiKey";
|
|
532
|
+
const _aRA = "agentRuntimeArn";
|
|
533
|
+
const _aS = "automationStream";
|
|
534
|
+
const _aSU = "automationStreamUpdate";
|
|
535
|
+
const _aSc = "actorSummaries";
|
|
536
|
+
const _aT = "accessToken";
|
|
537
|
+
const _aU = "authorizationUrl";
|
|
538
|
+
const _ar = "arguments";
|
|
539
|
+
const _b = "branch";
|
|
540
|
+
const _bI = "browserIdentifier";
|
|
541
|
+
const _ba = "baggage";
|
|
542
|
+
const _bl = "blob";
|
|
543
|
+
const _c = "client";
|
|
544
|
+
const _cA = "createdAt";
|
|
545
|
+
const _cC = "clearContext";
|
|
546
|
+
const _cE = "conflictException";
|
|
547
|
+
const _cII = "codeInterpreterIdentifier";
|
|
548
|
+
const _cP = "customParameters";
|
|
549
|
+
const _cS = "customState";
|
|
550
|
+
const _cT = "clientToken";
|
|
551
|
+
const _cTo = "contentType";
|
|
552
|
+
const _co = "content";
|
|
553
|
+
const _cod = "code";
|
|
554
|
+
const _com = "command";
|
|
555
|
+
const _con = "conversational";
|
|
556
|
+
const _d = "data";
|
|
557
|
+
const _dP = "directoryPath";
|
|
558
|
+
const _de = "description";
|
|
559
|
+
const _e = "error";
|
|
560
|
+
const _eC = "errorCode";
|
|
561
|
+
const _eCx = "exitCode";
|
|
562
|
+
const _eI = "eventId";
|
|
563
|
+
const _eM = "eventMetadata";
|
|
564
|
+
const _eMr = "errorMessage";
|
|
565
|
+
const _eT = "eventTimestamp";
|
|
566
|
+
const _eTx = "executionTime";
|
|
567
|
+
const _ev = "event";
|
|
568
|
+
const _eve = "events";
|
|
569
|
+
const _f = "filter";
|
|
570
|
+
const _fA = "forceAuthentication";
|
|
571
|
+
const _fL = "fieldList";
|
|
572
|
+
const _fR = "failedRecords";
|
|
573
|
+
const _h = "height";
|
|
574
|
+
const _hE = "httpError";
|
|
575
|
+
const _hH = "httpHeader";
|
|
576
|
+
const _hQ = "httpQuery";
|
|
577
|
+
const _ht = "http";
|
|
578
|
+
const _i = "items";
|
|
579
|
+
const _iE = "isError";
|
|
580
|
+
const _iP = "includePayloads";
|
|
581
|
+
const _iPB = "includeParentBranches";
|
|
582
|
+
const _iSE = "internalServerException";
|
|
583
|
+
const _iT = "idempotencyToken";
|
|
584
|
+
const _l = "left";
|
|
585
|
+
const _lUA = "lastUpdatedAt";
|
|
586
|
+
const _lVS = "liveViewStream";
|
|
587
|
+
const _la = "language";
|
|
588
|
+
const _m = "message";
|
|
589
|
+
const _mI = "memoryId";
|
|
590
|
+
const _mK = "metadataKey";
|
|
2193
591
|
const _mPV = "mcpProtocolVersion";
|
|
592
|
+
const _mR = "memoryRecord";
|
|
593
|
+
const _mRI = "memoryRecordId";
|
|
594
|
+
const _mRS = "memoryRecordSummaries";
|
|
595
|
+
const _mRa = "maxResults";
|
|
2194
596
|
const _mSI = "mcpSessionId";
|
|
2195
|
-
const
|
|
2196
|
-
const
|
|
597
|
+
const _mSIe = "memoryStrategyId";
|
|
598
|
+
const _mT = "mimeType";
|
|
599
|
+
const _mV = "metadataValue";
|
|
600
|
+
const _me = "metadata";
|
|
601
|
+
const _n = "name";
|
|
602
|
+
const _nT = "nextToken";
|
|
603
|
+
const _na = "namespace";
|
|
604
|
+
const _nam = "namespaces";
|
|
605
|
+
const _o = "operator";
|
|
606
|
+
const _oF = "oauth2Flow";
|
|
607
|
+
const _p = "payload";
|
|
608
|
+
const _pa = "path";
|
|
609
|
+
const _pat = "paths";
|
|
2197
610
|
const _q = "qualifier";
|
|
611
|
+
const _r = "records";
|
|
612
|
+
const _rCPN = "resourceCredentialProviderName";
|
|
613
|
+
const _rEI = "rootEventId";
|
|
614
|
+
const _rI = "requestIdentifier";
|
|
615
|
+
const _rNFE = "resourceNotFoundException";
|
|
616
|
+
const _rORU = "resourceOauth2ReturnUrl";
|
|
2198
617
|
const _rSI = "runtimeSessionId";
|
|
2199
618
|
const _rUI = "runtimeUserId";
|
|
619
|
+
const _re = "resource";
|
|
620
|
+
const _rea = "reason";
|
|
621
|
+
const _res = "response";
|
|
622
|
+
const _resu = "result";
|
|
623
|
+
const _ri = "right";
|
|
624
|
+
const _ro = "role";
|
|
625
|
+
const _s = "streaming";
|
|
626
|
+
const _sC = "structuredContent";
|
|
627
|
+
const _sCe = "searchCriteria";
|
|
628
|
+
const _sCt = "statusCode";
|
|
629
|
+
const _sE = "streamEndpoint";
|
|
2200
630
|
const _sI = "sessionId";
|
|
2201
|
-
const
|
|
631
|
+
const _sQ = "searchQuery";
|
|
632
|
+
const _sQEE = "serviceQuotaExceededException";
|
|
633
|
+
const _sR = "successfulRecords";
|
|
634
|
+
const _sRA = "sessionReplayArtifact";
|
|
635
|
+
const _sS = "streamStatus";
|
|
636
|
+
const _sSe = "sessionStatus";
|
|
637
|
+
const _sSes = "sessionSummaries";
|
|
638
|
+
const _sTS = "sessionTimeoutSeconds";
|
|
639
|
+
const _sU = "sessionUri";
|
|
640
|
+
const _sUt = "streamUpdate";
|
|
641
|
+
const _sV = "stringValue";
|
|
642
|
+
const _sc = "scopes";
|
|
643
|
+
const _sco = "score";
|
|
644
|
+
const _se = "sensitive";
|
|
645
|
+
const _ser = "server";
|
|
646
|
+
const _si = "size";
|
|
647
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcore";
|
|
648
|
+
const _st = "status";
|
|
649
|
+
const _std = "stdout";
|
|
650
|
+
const _stde = "stderr";
|
|
651
|
+
const _str = "streams";
|
|
652
|
+
const _stre = "stream";
|
|
653
|
+
const _t = "type";
|
|
654
|
+
const _tE = "throttlingException";
|
|
2202
655
|
const _tI = "traceId";
|
|
656
|
+
const _tIa = "taskId";
|
|
657
|
+
const _tK = "topK";
|
|
2203
658
|
const _tP = "traceParent";
|
|
2204
659
|
const _tS = "traceState";
|
|
2205
|
-
const
|
|
2206
|
-
const
|
|
2207
|
-
const
|
|
660
|
+
const _tSa = "taskStatus";
|
|
661
|
+
const _te = "text";
|
|
662
|
+
const _ti = "timestamp";
|
|
663
|
+
const _tr = "traceparent";
|
|
664
|
+
const _tra = "tracestate";
|
|
665
|
+
const _u = "uri";
|
|
666
|
+
const _uA = "updatedAt";
|
|
667
|
+
const _uI = "userIdentifier";
|
|
668
|
+
const _uIs = "userId";
|
|
669
|
+
const _uT = "userToken";
|
|
670
|
+
const _vE = "validationException";
|
|
671
|
+
const _vP = "viewPort";
|
|
672
|
+
const _w = "width";
|
|
673
|
+
const _wAT = "workloadAccessToken";
|
|
674
|
+
const _wIT = "workloadIdentityToken";
|
|
675
|
+
const _wN = "workloadName";
|
|
2208
676
|
const _xacisi = "x-amzn-code-interpreter-session-id";
|
|
2209
|
-
const
|
|
677
|
+
const n0 = "com.amazonaws.bedrockagentcore";
|
|
678
|
+
var AccessTokenType = [0, n0, _ATT, 8, 0];
|
|
679
|
+
var ApiKeyType = [0, n0, _AKT, 8, 0];
|
|
680
|
+
var AuthorizationUrlType = [0, n0, _AUT, 8, 0];
|
|
681
|
+
var Body = [0, n0, _B, 8, 21];
|
|
682
|
+
var CustomRequestValueType = [0, n0, _CRVT, 8, 0];
|
|
683
|
+
var ResponseStream = [
|
|
684
|
+
0,
|
|
685
|
+
n0,
|
|
686
|
+
_RS,
|
|
687
|
+
{
|
|
688
|
+
[_s]: 1,
|
|
689
|
+
[_se]: 1,
|
|
690
|
+
},
|
|
691
|
+
42,
|
|
692
|
+
];
|
|
693
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
694
|
+
var State = [0, n0, _S, 8, 0];
|
|
695
|
+
var UserTokenType = [0, n0, _UTT, 8, 0];
|
|
696
|
+
var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
|
|
697
|
+
var AccessDeniedException = [
|
|
698
|
+
-3,
|
|
699
|
+
n0,
|
|
700
|
+
_ADE,
|
|
701
|
+
{
|
|
702
|
+
[_e]: _c,
|
|
703
|
+
[_hE]: 403,
|
|
704
|
+
},
|
|
705
|
+
[_m],
|
|
706
|
+
[0],
|
|
707
|
+
];
|
|
708
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
709
|
+
var ActorSummary = [3, n0, _AS, 0, [_aI], [0]];
|
|
710
|
+
var AutomationStream = [3, n0, _ASu, 0, [_sE, _sS], [0, 0]];
|
|
711
|
+
var AutomationStreamUpdate = [3, n0, _ASU, 0, [_sS], [0]];
|
|
712
|
+
var BatchCreateMemoryRecordsInput = [
|
|
713
|
+
3,
|
|
714
|
+
n0,
|
|
715
|
+
_BCMRI,
|
|
716
|
+
0,
|
|
717
|
+
[_mI, _r, _cT],
|
|
718
|
+
[
|
|
719
|
+
[0, 1],
|
|
720
|
+
[() => MemoryRecordsCreateInputList, 0],
|
|
721
|
+
[0, 4],
|
|
722
|
+
],
|
|
723
|
+
];
|
|
724
|
+
var BatchCreateMemoryRecordsOutput = [
|
|
725
|
+
3,
|
|
726
|
+
n0,
|
|
727
|
+
_BCMRO,
|
|
728
|
+
0,
|
|
729
|
+
[_sR, _fR],
|
|
730
|
+
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList],
|
|
731
|
+
];
|
|
732
|
+
var BatchDeleteMemoryRecordsInput = [
|
|
733
|
+
3,
|
|
734
|
+
n0,
|
|
735
|
+
_BDMRI,
|
|
736
|
+
0,
|
|
737
|
+
[_mI, _r],
|
|
738
|
+
[[0, 1], () => MemoryRecordsDeleteInputList],
|
|
739
|
+
];
|
|
740
|
+
var BatchDeleteMemoryRecordsOutput = [
|
|
741
|
+
3,
|
|
742
|
+
n0,
|
|
743
|
+
_BDMRO,
|
|
744
|
+
0,
|
|
745
|
+
[_sR, _fR],
|
|
746
|
+
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList],
|
|
747
|
+
];
|
|
748
|
+
var BatchUpdateMemoryRecordsInput = [
|
|
749
|
+
3,
|
|
750
|
+
n0,
|
|
751
|
+
_BUMRI,
|
|
752
|
+
0,
|
|
753
|
+
[_mI, _r],
|
|
754
|
+
[
|
|
755
|
+
[0, 1],
|
|
756
|
+
[() => MemoryRecordsUpdateInputList, 0],
|
|
757
|
+
],
|
|
758
|
+
];
|
|
759
|
+
var BatchUpdateMemoryRecordsOutput = [
|
|
760
|
+
3,
|
|
761
|
+
n0,
|
|
762
|
+
_BUMRO,
|
|
763
|
+
0,
|
|
764
|
+
[_sR, _fR],
|
|
765
|
+
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList],
|
|
766
|
+
];
|
|
767
|
+
var Branch = [3, n0, _Br, 0, [_rEI, _n], [0, 0]];
|
|
768
|
+
var BranchFilter = [3, n0, _BF, 0, [_n, _iPB], [0, 2]];
|
|
769
|
+
var BrowserSessionStream = [
|
|
770
|
+
3,
|
|
771
|
+
n0,
|
|
772
|
+
_BSS,
|
|
773
|
+
0,
|
|
774
|
+
[_aS, _lVS],
|
|
775
|
+
[() => AutomationStream, () => LiveViewStream],
|
|
776
|
+
];
|
|
777
|
+
var BrowserSessionSummary = [
|
|
778
|
+
3,
|
|
779
|
+
n0,
|
|
780
|
+
_BSSr,
|
|
781
|
+
0,
|
|
782
|
+
[_bI, _sI, _n, _st, _cA, _lUA],
|
|
783
|
+
[0, 0, 0, 0, 5, 5],
|
|
784
|
+
];
|
|
785
|
+
var CodeInterpreterResult = [
|
|
786
|
+
3,
|
|
787
|
+
n0,
|
|
788
|
+
_CIR,
|
|
789
|
+
0,
|
|
790
|
+
[_co, _sC, _iE],
|
|
791
|
+
[() => ContentBlockList, () => ToolResultStructuredContent, 2],
|
|
792
|
+
];
|
|
793
|
+
var CodeInterpreterSessionSummary = [
|
|
794
|
+
3,
|
|
795
|
+
n0,
|
|
796
|
+
_CISS,
|
|
797
|
+
0,
|
|
798
|
+
[_cII, _sI, _n, _st, _cA, _lUA],
|
|
799
|
+
[0, 0, 0, 0, 5, 5],
|
|
800
|
+
];
|
|
801
|
+
var CompleteResourceTokenAuthRequest = [
|
|
802
|
+
3,
|
|
803
|
+
n0,
|
|
804
|
+
_CRTAR,
|
|
805
|
+
0,
|
|
806
|
+
[_uI, _sU],
|
|
807
|
+
[[() => UserIdentifier, 0], 0],
|
|
808
|
+
];
|
|
809
|
+
var CompleteResourceTokenAuthResponse = [3, n0, _CRTARo, 0, [], []];
|
|
810
|
+
var ConflictException = [
|
|
811
|
+
-3,
|
|
812
|
+
n0,
|
|
813
|
+
_CE,
|
|
814
|
+
{
|
|
815
|
+
[_e]: _c,
|
|
816
|
+
[_hE]: 409,
|
|
817
|
+
},
|
|
818
|
+
[_m],
|
|
819
|
+
[0],
|
|
820
|
+
];
|
|
821
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
822
|
+
var ContentBlock = [
|
|
823
|
+
3,
|
|
824
|
+
n0,
|
|
825
|
+
_CB,
|
|
826
|
+
0,
|
|
827
|
+
[_t, _te, _d, _mT, _u, _n, _de, _si, _re],
|
|
828
|
+
[0, 0, 21, 0, 0, 0, 0, 1, () => ResourceContent],
|
|
829
|
+
];
|
|
830
|
+
var Conversational = [3, n0, _C, 0, [_co, _ro], [[() => Content, 0], 0]];
|
|
831
|
+
var CreateEventInput = [
|
|
832
|
+
3,
|
|
833
|
+
n0,
|
|
834
|
+
_CEI,
|
|
835
|
+
0,
|
|
836
|
+
[_mI, _aI, _sI, _eT, _p, _b, _cT, _me],
|
|
837
|
+
[[0, 1], 0, 0, 4, [() => PayloadTypeList, 0], () => Branch, [0, 4], () => MetadataMap],
|
|
838
|
+
];
|
|
839
|
+
var CreateEventOutput = [3, n0, _CEO, 0, [_ev], [[() => Event, 0]]];
|
|
840
|
+
var DeleteEventInput = [
|
|
841
|
+
3,
|
|
842
|
+
n0,
|
|
843
|
+
_DEI,
|
|
844
|
+
0,
|
|
845
|
+
[_mI, _sI, _eI, _aI],
|
|
846
|
+
[
|
|
847
|
+
[0, 1],
|
|
848
|
+
[0, 1],
|
|
849
|
+
[0, 1],
|
|
850
|
+
[0, 1],
|
|
851
|
+
],
|
|
852
|
+
];
|
|
853
|
+
var DeleteEventOutput = [3, n0, _DEO, 0, [_eI], [0]];
|
|
854
|
+
var DeleteMemoryRecordInput = [
|
|
855
|
+
3,
|
|
856
|
+
n0,
|
|
857
|
+
_DMRI,
|
|
858
|
+
0,
|
|
859
|
+
[_mI, _mRI],
|
|
860
|
+
[
|
|
861
|
+
[0, 1],
|
|
862
|
+
[0, 1],
|
|
863
|
+
],
|
|
864
|
+
];
|
|
865
|
+
var DeleteMemoryRecordOutput = [3, n0, _DMRO, 0, [_mRI], [0]];
|
|
866
|
+
var Event = [
|
|
867
|
+
3,
|
|
868
|
+
n0,
|
|
869
|
+
_E,
|
|
870
|
+
0,
|
|
871
|
+
[_mI, _aI, _sI, _eI, _eT, _p, _b, _me],
|
|
872
|
+
[0, 0, 0, 0, 4, [() => PayloadTypeList, 0], () => Branch, () => MetadataMap],
|
|
873
|
+
];
|
|
874
|
+
var EventMetadataFilterExpression = [
|
|
875
|
+
3,
|
|
876
|
+
n0,
|
|
877
|
+
_EMFE,
|
|
878
|
+
0,
|
|
879
|
+
[_l, _o, _ri],
|
|
880
|
+
[() => LeftExpression, 0, () => RightExpression],
|
|
881
|
+
];
|
|
882
|
+
var FilterInput = [
|
|
883
|
+
3,
|
|
884
|
+
n0,
|
|
885
|
+
_FI,
|
|
886
|
+
0,
|
|
887
|
+
[_b, _eM],
|
|
888
|
+
[() => BranchFilter, () => EventMetadataFilterList],
|
|
889
|
+
];
|
|
890
|
+
var GetAgentCardRequest = [
|
|
891
|
+
3,
|
|
892
|
+
n0,
|
|
893
|
+
_GACR,
|
|
894
|
+
0,
|
|
895
|
+
[_rSI, _aRA, _q],
|
|
896
|
+
[
|
|
897
|
+
[
|
|
898
|
+
0,
|
|
899
|
+
{
|
|
900
|
+
[_hH]: _XABARSI,
|
|
901
|
+
[_iT]: 1,
|
|
902
|
+
},
|
|
903
|
+
],
|
|
904
|
+
[0, 1],
|
|
905
|
+
[
|
|
906
|
+
0,
|
|
907
|
+
{
|
|
908
|
+
[_hQ]: _q,
|
|
909
|
+
},
|
|
910
|
+
],
|
|
911
|
+
],
|
|
912
|
+
];
|
|
913
|
+
var GetAgentCardResponse = [
|
|
914
|
+
3,
|
|
915
|
+
n0,
|
|
916
|
+
_GACRe,
|
|
917
|
+
0,
|
|
918
|
+
[_rSI, _aC, _sCt],
|
|
919
|
+
[
|
|
920
|
+
[
|
|
921
|
+
0,
|
|
922
|
+
{
|
|
923
|
+
[_hH]: _XABARSI,
|
|
924
|
+
},
|
|
925
|
+
],
|
|
926
|
+
[15, 16],
|
|
927
|
+
[1, 32],
|
|
928
|
+
],
|
|
929
|
+
];
|
|
930
|
+
var GetBrowserSessionRequest = [
|
|
931
|
+
3,
|
|
932
|
+
n0,
|
|
933
|
+
_GBSR,
|
|
934
|
+
0,
|
|
935
|
+
[_bI, _sI],
|
|
936
|
+
[
|
|
937
|
+
[0, 1],
|
|
938
|
+
[
|
|
939
|
+
0,
|
|
940
|
+
{
|
|
941
|
+
[_hQ]: _sI,
|
|
942
|
+
},
|
|
943
|
+
],
|
|
944
|
+
],
|
|
945
|
+
];
|
|
946
|
+
var GetBrowserSessionResponse = [
|
|
947
|
+
3,
|
|
948
|
+
n0,
|
|
949
|
+
_GBSRe,
|
|
950
|
+
0,
|
|
951
|
+
[_bI, _sI, _n, _cA, _vP, _sTS, _st, _str, _sRA, _lUA],
|
|
952
|
+
[0, 0, 0, 5, () => ViewPort, 1, 0, () => BrowserSessionStream, 0, 5],
|
|
953
|
+
];
|
|
954
|
+
var GetCodeInterpreterSessionRequest = [
|
|
955
|
+
3,
|
|
956
|
+
n0,
|
|
957
|
+
_GCISR,
|
|
958
|
+
0,
|
|
959
|
+
[_cII, _sI],
|
|
960
|
+
[
|
|
961
|
+
[0, 1],
|
|
962
|
+
[
|
|
963
|
+
0,
|
|
964
|
+
{
|
|
965
|
+
[_hQ]: _sI,
|
|
966
|
+
},
|
|
967
|
+
],
|
|
968
|
+
],
|
|
969
|
+
];
|
|
970
|
+
var GetCodeInterpreterSessionResponse = [
|
|
971
|
+
3,
|
|
972
|
+
n0,
|
|
973
|
+
_GCISRe,
|
|
974
|
+
0,
|
|
975
|
+
[_cII, _sI, _n, _cA, _sTS, _st],
|
|
976
|
+
[0, 0, 0, 5, 1, 0],
|
|
977
|
+
];
|
|
978
|
+
var GetEventInput = [
|
|
979
|
+
3,
|
|
980
|
+
n0,
|
|
981
|
+
_GEI,
|
|
982
|
+
0,
|
|
983
|
+
[_mI, _sI, _aI, _eI],
|
|
984
|
+
[
|
|
985
|
+
[0, 1],
|
|
986
|
+
[0, 1],
|
|
987
|
+
[0, 1],
|
|
988
|
+
[0, 1],
|
|
989
|
+
],
|
|
990
|
+
];
|
|
991
|
+
var GetEventOutput = [3, n0, _GEO, 0, [_ev], [[() => Event, 0]]];
|
|
992
|
+
var GetMemoryRecordInput = [
|
|
993
|
+
3,
|
|
994
|
+
n0,
|
|
995
|
+
_GMRI,
|
|
996
|
+
0,
|
|
997
|
+
[_mI, _mRI],
|
|
998
|
+
[
|
|
999
|
+
[0, 1],
|
|
1000
|
+
[0, 1],
|
|
1001
|
+
],
|
|
1002
|
+
];
|
|
1003
|
+
var GetMemoryRecordOutput = [3, n0, _GMRO, 0, [_mR], [[() => MemoryRecord, 0]]];
|
|
1004
|
+
var GetResourceApiKeyRequest = [
|
|
1005
|
+
3,
|
|
1006
|
+
n0,
|
|
1007
|
+
_GRAKR,
|
|
1008
|
+
0,
|
|
1009
|
+
[_wIT, _rCPN],
|
|
1010
|
+
[[() => WorkloadIdentityTokenType, 0], 0],
|
|
1011
|
+
];
|
|
1012
|
+
var GetResourceApiKeyResponse = [3, n0, _GRAKRe, 0, [_aK], [[() => ApiKeyType, 0]]];
|
|
1013
|
+
var GetResourceOauth2TokenRequest = [
|
|
1014
|
+
3,
|
|
1015
|
+
n0,
|
|
1016
|
+
_GROTR,
|
|
1017
|
+
0,
|
|
1018
|
+
[_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP, _cS],
|
|
1019
|
+
[
|
|
1020
|
+
[() => WorkloadIdentityTokenType, 0],
|
|
1021
|
+
0,
|
|
1022
|
+
64 | 0,
|
|
1023
|
+
0,
|
|
1024
|
+
0,
|
|
1025
|
+
0,
|
|
1026
|
+
2,
|
|
1027
|
+
[() => CustomRequestParametersType, 0],
|
|
1028
|
+
[() => State, 0],
|
|
1029
|
+
],
|
|
1030
|
+
];
|
|
1031
|
+
var GetResourceOauth2TokenResponse = [
|
|
1032
|
+
3,
|
|
1033
|
+
n0,
|
|
1034
|
+
_GROTRe,
|
|
1035
|
+
0,
|
|
1036
|
+
[_aU, _aT, _sU, _sSe],
|
|
1037
|
+
[[() => AuthorizationUrlType, 0], [() => AccessTokenType, 0], 0, 0],
|
|
1038
|
+
];
|
|
1039
|
+
var GetWorkloadAccessTokenForJWTRequest = [
|
|
1040
|
+
3,
|
|
1041
|
+
n0,
|
|
1042
|
+
_GWATFJWTR,
|
|
1043
|
+
0,
|
|
1044
|
+
[_wN, _uT],
|
|
1045
|
+
[0, [() => UserTokenType, 0]],
|
|
1046
|
+
];
|
|
1047
|
+
var GetWorkloadAccessTokenForJWTResponse = [
|
|
1048
|
+
3,
|
|
1049
|
+
n0,
|
|
1050
|
+
_GWATFJWTRe,
|
|
1051
|
+
0,
|
|
1052
|
+
[_wAT],
|
|
1053
|
+
[[() => WorkloadIdentityTokenType, 0]],
|
|
1054
|
+
];
|
|
1055
|
+
var GetWorkloadAccessTokenForUserIdRequest = [3, n0, _GWATFUIR, 0, [_wN, _uIs], [0, 0]];
|
|
1056
|
+
var GetWorkloadAccessTokenForUserIdResponse = [
|
|
1057
|
+
3,
|
|
1058
|
+
n0,
|
|
1059
|
+
_GWATFUIRe,
|
|
1060
|
+
0,
|
|
1061
|
+
[_wAT],
|
|
1062
|
+
[[() => WorkloadIdentityTokenType, 0]],
|
|
1063
|
+
];
|
|
1064
|
+
var GetWorkloadAccessTokenRequest = [3, n0, _GWATR, 0, [_wN], [0]];
|
|
1065
|
+
var GetWorkloadAccessTokenResponse = [
|
|
1066
|
+
3,
|
|
1067
|
+
n0,
|
|
1068
|
+
_GWATRe,
|
|
1069
|
+
0,
|
|
1070
|
+
[_wAT],
|
|
1071
|
+
[[() => WorkloadIdentityTokenType, 0]],
|
|
1072
|
+
];
|
|
1073
|
+
var InputContentBlock = [3, n0, _ICB, 0, [_pa, _te, _bl], [0, 0, [() => Body, 0]]];
|
|
1074
|
+
var InternalServerException = [
|
|
1075
|
+
-3,
|
|
1076
|
+
n0,
|
|
1077
|
+
_ISE,
|
|
1078
|
+
{
|
|
1079
|
+
[_e]: _ser,
|
|
1080
|
+
[_hE]: 500,
|
|
1081
|
+
},
|
|
1082
|
+
[_m],
|
|
1083
|
+
[0],
|
|
1084
|
+
];
|
|
1085
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1086
|
+
var InvalidInputException = [
|
|
1087
|
+
-3,
|
|
1088
|
+
n0,
|
|
1089
|
+
_IIE,
|
|
1090
|
+
{
|
|
1091
|
+
[_e]: _c,
|
|
1092
|
+
[_hE]: 400,
|
|
1093
|
+
},
|
|
1094
|
+
[_m],
|
|
1095
|
+
[0],
|
|
1096
|
+
];
|
|
1097
|
+
schema.TypeRegistry.for(n0).registerError(InvalidInputException, InvalidInputException$1);
|
|
1098
|
+
var InvokeAgentRuntimeRequest = [
|
|
1099
|
+
3,
|
|
1100
|
+
n0,
|
|
1101
|
+
_IARR,
|
|
1102
|
+
0,
|
|
1103
|
+
[_cTo, _a, _mSI, _rSI, _mPV, _rUI, _tI, _tP, _tS, _ba, _aRA, _q, _aIc, _p],
|
|
1104
|
+
[
|
|
1105
|
+
[
|
|
1106
|
+
0,
|
|
1107
|
+
{
|
|
1108
|
+
[_hH]: _CT,
|
|
1109
|
+
},
|
|
1110
|
+
],
|
|
1111
|
+
[
|
|
1112
|
+
0,
|
|
1113
|
+
{
|
|
1114
|
+
[_hH]: _A,
|
|
1115
|
+
},
|
|
1116
|
+
],
|
|
1117
|
+
[
|
|
1118
|
+
0,
|
|
1119
|
+
{
|
|
1120
|
+
[_hH]: _MSI,
|
|
1121
|
+
},
|
|
1122
|
+
],
|
|
1123
|
+
[
|
|
1124
|
+
0,
|
|
1125
|
+
{
|
|
1126
|
+
[_hH]: _XABARSI,
|
|
1127
|
+
[_iT]: 1,
|
|
1128
|
+
},
|
|
1129
|
+
],
|
|
1130
|
+
[
|
|
1131
|
+
0,
|
|
1132
|
+
{
|
|
1133
|
+
[_hH]: _MPV,
|
|
1134
|
+
},
|
|
1135
|
+
],
|
|
1136
|
+
[
|
|
1137
|
+
0,
|
|
1138
|
+
{
|
|
1139
|
+
[_hH]: _XABARUI,
|
|
1140
|
+
},
|
|
1141
|
+
],
|
|
1142
|
+
[
|
|
1143
|
+
0,
|
|
1144
|
+
{
|
|
1145
|
+
[_hH]: _XATI,
|
|
1146
|
+
},
|
|
1147
|
+
],
|
|
1148
|
+
[
|
|
1149
|
+
0,
|
|
1150
|
+
{
|
|
1151
|
+
[_hH]: _tr,
|
|
1152
|
+
},
|
|
1153
|
+
],
|
|
1154
|
+
[
|
|
1155
|
+
0,
|
|
1156
|
+
{
|
|
1157
|
+
[_hH]: _tra,
|
|
1158
|
+
},
|
|
1159
|
+
],
|
|
1160
|
+
[
|
|
1161
|
+
0,
|
|
1162
|
+
{
|
|
1163
|
+
[_hH]: _ba,
|
|
1164
|
+
},
|
|
1165
|
+
],
|
|
1166
|
+
[0, 1],
|
|
1167
|
+
[
|
|
1168
|
+
0,
|
|
1169
|
+
{
|
|
1170
|
+
[_hQ]: _q,
|
|
1171
|
+
},
|
|
1172
|
+
],
|
|
1173
|
+
[
|
|
1174
|
+
0,
|
|
1175
|
+
{
|
|
1176
|
+
[_hQ]: _aIc,
|
|
1177
|
+
},
|
|
1178
|
+
],
|
|
1179
|
+
[() => Body, 16],
|
|
1180
|
+
],
|
|
1181
|
+
];
|
|
1182
|
+
var InvokeAgentRuntimeResponse = [
|
|
1183
|
+
3,
|
|
1184
|
+
n0,
|
|
1185
|
+
_IARRn,
|
|
1186
|
+
0,
|
|
1187
|
+
[_rSI, _mSI, _mPV, _tI, _tP, _tS, _ba, _cTo, _res, _sCt],
|
|
1188
|
+
[
|
|
1189
|
+
[
|
|
1190
|
+
0,
|
|
1191
|
+
{
|
|
1192
|
+
[_hH]: _XABARSI,
|
|
1193
|
+
},
|
|
1194
|
+
],
|
|
1195
|
+
[
|
|
1196
|
+
0,
|
|
1197
|
+
{
|
|
1198
|
+
[_hH]: _MSI,
|
|
1199
|
+
},
|
|
1200
|
+
],
|
|
1201
|
+
[
|
|
1202
|
+
0,
|
|
1203
|
+
{
|
|
1204
|
+
[_hH]: _MPV,
|
|
1205
|
+
},
|
|
1206
|
+
],
|
|
1207
|
+
[
|
|
1208
|
+
0,
|
|
1209
|
+
{
|
|
1210
|
+
[_hH]: _XATI,
|
|
1211
|
+
},
|
|
1212
|
+
],
|
|
1213
|
+
[
|
|
1214
|
+
0,
|
|
1215
|
+
{
|
|
1216
|
+
[_hH]: _tr,
|
|
1217
|
+
},
|
|
1218
|
+
],
|
|
1219
|
+
[
|
|
1220
|
+
0,
|
|
1221
|
+
{
|
|
1222
|
+
[_hH]: _tra,
|
|
1223
|
+
},
|
|
1224
|
+
],
|
|
1225
|
+
[
|
|
1226
|
+
0,
|
|
1227
|
+
{
|
|
1228
|
+
[_hH]: _ba,
|
|
1229
|
+
},
|
|
1230
|
+
],
|
|
1231
|
+
[
|
|
1232
|
+
0,
|
|
1233
|
+
{
|
|
1234
|
+
[_hH]: _CT,
|
|
1235
|
+
},
|
|
1236
|
+
],
|
|
1237
|
+
[() => ResponseStream, 16],
|
|
1238
|
+
[1, 32],
|
|
1239
|
+
],
|
|
1240
|
+
];
|
|
1241
|
+
var InvokeCodeInterpreterRequest = [
|
|
1242
|
+
3,
|
|
1243
|
+
n0,
|
|
1244
|
+
_ICIR,
|
|
1245
|
+
0,
|
|
1246
|
+
[_cII, _sI, _tI, _tP, _n, _ar],
|
|
1247
|
+
[
|
|
1248
|
+
[0, 1],
|
|
1249
|
+
[
|
|
1250
|
+
0,
|
|
1251
|
+
{
|
|
1252
|
+
[_hH]: _xacisi,
|
|
1253
|
+
},
|
|
1254
|
+
],
|
|
1255
|
+
[
|
|
1256
|
+
0,
|
|
1257
|
+
{
|
|
1258
|
+
[_hH]: _XATI,
|
|
1259
|
+
},
|
|
1260
|
+
],
|
|
1261
|
+
[
|
|
1262
|
+
0,
|
|
1263
|
+
{
|
|
1264
|
+
[_hH]: _tr,
|
|
1265
|
+
},
|
|
1266
|
+
],
|
|
1267
|
+
0,
|
|
1268
|
+
[() => ToolArguments, 0],
|
|
1269
|
+
],
|
|
1270
|
+
];
|
|
1271
|
+
var InvokeCodeInterpreterResponse = [
|
|
1272
|
+
3,
|
|
1273
|
+
n0,
|
|
1274
|
+
_ICIRn,
|
|
1275
|
+
0,
|
|
1276
|
+
[_sI, _stre],
|
|
1277
|
+
[
|
|
1278
|
+
[
|
|
1279
|
+
0,
|
|
1280
|
+
{
|
|
1281
|
+
[_hH]: _xacisi,
|
|
1282
|
+
},
|
|
1283
|
+
],
|
|
1284
|
+
[() => CodeInterpreterStreamOutput, 16],
|
|
1285
|
+
],
|
|
1286
|
+
];
|
|
1287
|
+
var ListActorsInput = [3, n0, _LAI, 0, [_mI, _mRa, _nT], [[0, 1], 1, 0]];
|
|
1288
|
+
var ListActorsOutput = [3, n0, _LAO, 0, [_aSc, _nT], [() => ActorSummaryList, 0]];
|
|
1289
|
+
var ListBrowserSessionsRequest = [
|
|
1290
|
+
3,
|
|
1291
|
+
n0,
|
|
1292
|
+
_LBSR,
|
|
1293
|
+
0,
|
|
1294
|
+
[_bI, _mRa, _nT, _st],
|
|
1295
|
+
[[0, 1], 1, 0, 0],
|
|
1296
|
+
];
|
|
1297
|
+
var ListBrowserSessionsResponse = [
|
|
1298
|
+
3,
|
|
1299
|
+
n0,
|
|
1300
|
+
_LBSRi,
|
|
1301
|
+
0,
|
|
1302
|
+
[_i, _nT],
|
|
1303
|
+
[() => BrowserSessionSummaries, 0],
|
|
1304
|
+
];
|
|
1305
|
+
var ListCodeInterpreterSessionsRequest = [
|
|
1306
|
+
3,
|
|
1307
|
+
n0,
|
|
1308
|
+
_LCISR,
|
|
1309
|
+
0,
|
|
1310
|
+
[_cII, _mRa, _nT, _st],
|
|
1311
|
+
[[0, 1], 1, 0, 0],
|
|
1312
|
+
];
|
|
1313
|
+
var ListCodeInterpreterSessionsResponse = [
|
|
1314
|
+
3,
|
|
1315
|
+
n0,
|
|
1316
|
+
_LCISRi,
|
|
1317
|
+
0,
|
|
1318
|
+
[_i, _nT],
|
|
1319
|
+
[() => CodeInterpreterSessionSummaries, 0],
|
|
1320
|
+
];
|
|
1321
|
+
var ListEventsInput = [
|
|
1322
|
+
3,
|
|
1323
|
+
n0,
|
|
1324
|
+
_LEI,
|
|
1325
|
+
0,
|
|
1326
|
+
[_mI, _sI, _aI, _iP, _f, _mRa, _nT],
|
|
1327
|
+
[[0, 1], [0, 1], [0, 1], 2, () => FilterInput, 1, 0],
|
|
1328
|
+
];
|
|
1329
|
+
var ListEventsOutput = [3, n0, _LEO, 0, [_eve, _nT], [[() => EventList, 0], 0]];
|
|
1330
|
+
var ListMemoryRecordsInput = [
|
|
1331
|
+
3,
|
|
1332
|
+
n0,
|
|
1333
|
+
_LMRI,
|
|
1334
|
+
0,
|
|
1335
|
+
[_mI, _na, _mSIe, _mRa, _nT],
|
|
1336
|
+
[[0, 1], 0, 0, 1, 0],
|
|
1337
|
+
];
|
|
1338
|
+
var ListMemoryRecordsOutput = [
|
|
1339
|
+
3,
|
|
1340
|
+
n0,
|
|
1341
|
+
_LMRO,
|
|
1342
|
+
0,
|
|
1343
|
+
[_mRS, _nT],
|
|
1344
|
+
[[() => MemoryRecordSummaryList, 0], 0],
|
|
1345
|
+
];
|
|
1346
|
+
var ListSessionsInput = [3, n0, _LSI, 0, [_mI, _aI, _mRa, _nT], [[0, 1], [0, 1], 1, 0]];
|
|
1347
|
+
var ListSessionsOutput = [3, n0, _LSO, 0, [_sSes, _nT], [() => SessionSummaryList, 0]];
|
|
1348
|
+
var LiveViewStream = [3, n0, _LVS, 0, [_sE], [0]];
|
|
1349
|
+
var MemoryRecord = [
|
|
1350
|
+
3,
|
|
1351
|
+
n0,
|
|
1352
|
+
_MR,
|
|
1353
|
+
0,
|
|
1354
|
+
[_mRI, _co, _mSIe, _nam, _cA],
|
|
1355
|
+
[0, [() => MemoryContent, 0], 0, 64 | 0, 4],
|
|
1356
|
+
];
|
|
1357
|
+
var MemoryRecordCreateInput = [
|
|
1358
|
+
3,
|
|
1359
|
+
n0,
|
|
1360
|
+
_MRCI,
|
|
1361
|
+
0,
|
|
1362
|
+
[_rI, _nam, _co, _ti, _mSIe],
|
|
1363
|
+
[0, 64 | 0, [() => MemoryContent, 0], 4, 0],
|
|
1364
|
+
];
|
|
1365
|
+
var MemoryRecordDeleteInput = [3, n0, _MRDI, 0, [_mRI], [0]];
|
|
1366
|
+
var MemoryRecordOutput = [3, n0, _MRO, 0, [_mRI, _st, _rI, _eC, _eMr], [0, 0, 0, 1, 0]];
|
|
1367
|
+
var MemoryRecordSummary = [
|
|
1368
|
+
3,
|
|
1369
|
+
n0,
|
|
1370
|
+
_MRS,
|
|
1371
|
+
0,
|
|
1372
|
+
[_mRI, _co, _mSIe, _nam, _cA, _sco],
|
|
1373
|
+
[0, [() => MemoryContent, 0], 0, 64 | 0, 4, 1],
|
|
1374
|
+
];
|
|
1375
|
+
var MemoryRecordUpdateInput = [
|
|
1376
|
+
3,
|
|
1377
|
+
n0,
|
|
1378
|
+
_MRUI,
|
|
1379
|
+
0,
|
|
1380
|
+
[_mRI, _ti, _co, _nam, _mSIe],
|
|
1381
|
+
[0, 4, [() => MemoryContent, 0], 64 | 0, 0],
|
|
1382
|
+
];
|
|
1383
|
+
var ResourceContent = [3, n0, _RC, 0, [_t, _u, _mT, _te, _bl], [0, 0, 0, 0, 21]];
|
|
1384
|
+
var ResourceNotFoundException = [
|
|
1385
|
+
-3,
|
|
1386
|
+
n0,
|
|
1387
|
+
_RNFE,
|
|
1388
|
+
{
|
|
1389
|
+
[_e]: _c,
|
|
1390
|
+
[_hE]: 404,
|
|
1391
|
+
},
|
|
1392
|
+
[_m],
|
|
1393
|
+
[0],
|
|
1394
|
+
];
|
|
1395
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1396
|
+
var RetrieveMemoryRecordsInput = [
|
|
1397
|
+
3,
|
|
1398
|
+
n0,
|
|
1399
|
+
_RMRI,
|
|
1400
|
+
0,
|
|
1401
|
+
[_mI, _na, _sCe, _nT, _mRa],
|
|
1402
|
+
[[0, 1], 0, [() => SearchCriteria, 0], 0, 1],
|
|
1403
|
+
];
|
|
1404
|
+
var RetrieveMemoryRecordsOutput = [
|
|
1405
|
+
3,
|
|
1406
|
+
n0,
|
|
1407
|
+
_RMRO,
|
|
1408
|
+
0,
|
|
1409
|
+
[_mRS, _nT],
|
|
1410
|
+
[[() => MemoryRecordSummaryList, 0], 0],
|
|
1411
|
+
];
|
|
1412
|
+
var RuntimeClientError = [
|
|
1413
|
+
-3,
|
|
1414
|
+
n0,
|
|
1415
|
+
_RCE,
|
|
1416
|
+
{
|
|
1417
|
+
[_e]: _c,
|
|
1418
|
+
[_hE]: 424,
|
|
1419
|
+
},
|
|
1420
|
+
[_m],
|
|
1421
|
+
[0],
|
|
1422
|
+
];
|
|
1423
|
+
schema.TypeRegistry.for(n0).registerError(RuntimeClientError, RuntimeClientError$1);
|
|
1424
|
+
var SearchCriteria = [
|
|
1425
|
+
3,
|
|
1426
|
+
n0,
|
|
1427
|
+
_SC,
|
|
1428
|
+
0,
|
|
1429
|
+
[_sQ, _mSIe, _tK],
|
|
1430
|
+
[[() => SensitiveString, 0], 0, 1],
|
|
1431
|
+
];
|
|
1432
|
+
var ServiceException = [
|
|
1433
|
+
-3,
|
|
1434
|
+
n0,
|
|
1435
|
+
_SE,
|
|
1436
|
+
{
|
|
1437
|
+
[_e]: _ser,
|
|
1438
|
+
[_hE]: 500,
|
|
1439
|
+
},
|
|
1440
|
+
[_m],
|
|
1441
|
+
[0],
|
|
1442
|
+
];
|
|
1443
|
+
schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
|
|
1444
|
+
var ServiceQuotaExceededException = [
|
|
1445
|
+
-3,
|
|
1446
|
+
n0,
|
|
1447
|
+
_SQEE,
|
|
1448
|
+
{
|
|
1449
|
+
[_e]: _c,
|
|
1450
|
+
[_hE]: 402,
|
|
1451
|
+
},
|
|
1452
|
+
[_m],
|
|
1453
|
+
[0],
|
|
1454
|
+
];
|
|
1455
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1456
|
+
var SessionSummary = [3, n0, _SSe, 0, [_sI, _aI, _cA], [0, 0, 4]];
|
|
1457
|
+
var StartBrowserSessionRequest = [
|
|
1458
|
+
3,
|
|
1459
|
+
n0,
|
|
1460
|
+
_SBSR,
|
|
1461
|
+
0,
|
|
1462
|
+
[_tI, _tP, _bI, _n, _sTS, _vP, _cT],
|
|
1463
|
+
[
|
|
1464
|
+
[
|
|
1465
|
+
0,
|
|
1466
|
+
{
|
|
1467
|
+
[_hH]: _XATI,
|
|
1468
|
+
},
|
|
1469
|
+
],
|
|
1470
|
+
[
|
|
1471
|
+
0,
|
|
1472
|
+
{
|
|
1473
|
+
[_hH]: _tr,
|
|
1474
|
+
},
|
|
1475
|
+
],
|
|
1476
|
+
[0, 1],
|
|
1477
|
+
0,
|
|
1478
|
+
1,
|
|
1479
|
+
() => ViewPort,
|
|
1480
|
+
[0, 4],
|
|
1481
|
+
],
|
|
1482
|
+
];
|
|
1483
|
+
var StartBrowserSessionResponse = [
|
|
1484
|
+
3,
|
|
1485
|
+
n0,
|
|
1486
|
+
_SBSRt,
|
|
1487
|
+
0,
|
|
1488
|
+
[_bI, _sI, _cA, _str],
|
|
1489
|
+
[0, 0, 5, () => BrowserSessionStream],
|
|
1490
|
+
];
|
|
1491
|
+
var StartCodeInterpreterSessionRequest = [
|
|
1492
|
+
3,
|
|
1493
|
+
n0,
|
|
1494
|
+
_SCISR,
|
|
1495
|
+
0,
|
|
1496
|
+
[_tI, _tP, _cII, _n, _sTS, _cT],
|
|
1497
|
+
[
|
|
1498
|
+
[
|
|
1499
|
+
0,
|
|
1500
|
+
{
|
|
1501
|
+
[_hH]: _XATI,
|
|
1502
|
+
},
|
|
1503
|
+
],
|
|
1504
|
+
[
|
|
1505
|
+
0,
|
|
1506
|
+
{
|
|
1507
|
+
[_hH]: _tr,
|
|
1508
|
+
},
|
|
1509
|
+
],
|
|
1510
|
+
[0, 1],
|
|
1511
|
+
0,
|
|
1512
|
+
1,
|
|
1513
|
+
[0, 4],
|
|
1514
|
+
],
|
|
1515
|
+
];
|
|
1516
|
+
var StartCodeInterpreterSessionResponse = [
|
|
1517
|
+
3,
|
|
1518
|
+
n0,
|
|
1519
|
+
_SCISRt,
|
|
1520
|
+
0,
|
|
1521
|
+
[_cII, _sI, _cA],
|
|
1522
|
+
[0, 0, 5],
|
|
1523
|
+
];
|
|
1524
|
+
var StopBrowserSessionRequest = [
|
|
1525
|
+
3,
|
|
1526
|
+
n0,
|
|
1527
|
+
_SBSRto,
|
|
1528
|
+
0,
|
|
1529
|
+
[_tI, _tP, _bI, _sI, _cT],
|
|
1530
|
+
[
|
|
1531
|
+
[
|
|
1532
|
+
0,
|
|
1533
|
+
{
|
|
1534
|
+
[_hH]: _XATI,
|
|
1535
|
+
},
|
|
1536
|
+
],
|
|
1537
|
+
[
|
|
1538
|
+
0,
|
|
1539
|
+
{
|
|
1540
|
+
[_hH]: _tr,
|
|
1541
|
+
},
|
|
1542
|
+
],
|
|
1543
|
+
[0, 1],
|
|
1544
|
+
[
|
|
1545
|
+
0,
|
|
1546
|
+
{
|
|
1547
|
+
[_hQ]: _sI,
|
|
1548
|
+
},
|
|
1549
|
+
],
|
|
1550
|
+
[0, 4],
|
|
1551
|
+
],
|
|
1552
|
+
];
|
|
1553
|
+
var StopBrowserSessionResponse = [3, n0, _SBSRtop, 0, [_bI, _sI, _lUA], [0, 0, 5]];
|
|
1554
|
+
var StopCodeInterpreterSessionRequest = [
|
|
1555
|
+
3,
|
|
1556
|
+
n0,
|
|
1557
|
+
_SCISRto,
|
|
1558
|
+
0,
|
|
1559
|
+
[_tI, _tP, _cII, _sI, _cT],
|
|
1560
|
+
[
|
|
1561
|
+
[
|
|
1562
|
+
0,
|
|
1563
|
+
{
|
|
1564
|
+
[_hH]: _XATI,
|
|
1565
|
+
},
|
|
1566
|
+
],
|
|
1567
|
+
[
|
|
1568
|
+
0,
|
|
1569
|
+
{
|
|
1570
|
+
[_hH]: _tr,
|
|
1571
|
+
},
|
|
1572
|
+
],
|
|
1573
|
+
[0, 1],
|
|
1574
|
+
[
|
|
1575
|
+
0,
|
|
1576
|
+
{
|
|
1577
|
+
[_hQ]: _sI,
|
|
1578
|
+
},
|
|
1579
|
+
],
|
|
1580
|
+
[0, 4],
|
|
1581
|
+
],
|
|
1582
|
+
];
|
|
1583
|
+
var StopCodeInterpreterSessionResponse = [
|
|
1584
|
+
3,
|
|
1585
|
+
n0,
|
|
1586
|
+
_SCISRtop,
|
|
1587
|
+
0,
|
|
1588
|
+
[_cII, _sI, _lUA],
|
|
1589
|
+
[0, 0, 5],
|
|
1590
|
+
];
|
|
1591
|
+
var StopRuntimeSessionRequest = [
|
|
1592
|
+
3,
|
|
1593
|
+
n0,
|
|
1594
|
+
_SRSR,
|
|
1595
|
+
0,
|
|
1596
|
+
[_rSI, _aRA, _q, _cT],
|
|
1597
|
+
[
|
|
1598
|
+
[
|
|
1599
|
+
0,
|
|
1600
|
+
{
|
|
1601
|
+
[_hH]: _XABARSI,
|
|
1602
|
+
},
|
|
1603
|
+
],
|
|
1604
|
+
[0, 1],
|
|
1605
|
+
[
|
|
1606
|
+
0,
|
|
1607
|
+
{
|
|
1608
|
+
[_hQ]: _q,
|
|
1609
|
+
},
|
|
1610
|
+
],
|
|
1611
|
+
[0, 4],
|
|
1612
|
+
],
|
|
1613
|
+
];
|
|
1614
|
+
var StopRuntimeSessionResponse = [
|
|
1615
|
+
3,
|
|
1616
|
+
n0,
|
|
1617
|
+
_SRSRt,
|
|
1618
|
+
0,
|
|
1619
|
+
[_rSI, _sCt],
|
|
1620
|
+
[
|
|
1621
|
+
[
|
|
1622
|
+
0,
|
|
1623
|
+
{
|
|
1624
|
+
[_hH]: _XABARSI,
|
|
1625
|
+
},
|
|
1626
|
+
],
|
|
1627
|
+
[1, 32],
|
|
1628
|
+
],
|
|
1629
|
+
];
|
|
1630
|
+
var ThrottledException = [
|
|
1631
|
+
-3,
|
|
1632
|
+
n0,
|
|
1633
|
+
_TE,
|
|
1634
|
+
{
|
|
1635
|
+
[_e]: _c,
|
|
1636
|
+
[_hE]: 429,
|
|
1637
|
+
},
|
|
1638
|
+
[_m],
|
|
1639
|
+
[0],
|
|
1640
|
+
];
|
|
1641
|
+
schema.TypeRegistry.for(n0).registerError(ThrottledException, ThrottledException$1);
|
|
1642
|
+
var ThrottlingException = [
|
|
1643
|
+
-3,
|
|
1644
|
+
n0,
|
|
1645
|
+
_TEh,
|
|
1646
|
+
{
|
|
1647
|
+
[_e]: _c,
|
|
1648
|
+
[_hE]: 429,
|
|
1649
|
+
},
|
|
1650
|
+
[_m],
|
|
1651
|
+
[0],
|
|
1652
|
+
];
|
|
1653
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1654
|
+
var ToolArguments = [
|
|
1655
|
+
3,
|
|
1656
|
+
n0,
|
|
1657
|
+
_TA,
|
|
1658
|
+
0,
|
|
1659
|
+
[_cod, _la, _cC, _com, _pa, _pat, _co, _dP, _tIa],
|
|
1660
|
+
[0, 0, 2, 0, 0, 64 | 0, [() => InputContentBlockList, 0], 0, 0],
|
|
1661
|
+
];
|
|
1662
|
+
var ToolResultStructuredContent = [
|
|
1663
|
+
3,
|
|
1664
|
+
n0,
|
|
1665
|
+
_TRSC,
|
|
1666
|
+
0,
|
|
1667
|
+
[_tIa, _tSa, _std, _stde, _eCx, _eTx],
|
|
1668
|
+
[0, 0, 0, 0, 1, 1],
|
|
1669
|
+
];
|
|
1670
|
+
var UnauthorizedException = [
|
|
1671
|
+
-3,
|
|
1672
|
+
n0,
|
|
1673
|
+
_UE,
|
|
1674
|
+
{
|
|
1675
|
+
[_e]: _c,
|
|
1676
|
+
[_hE]: 401,
|
|
1677
|
+
},
|
|
1678
|
+
[_m],
|
|
1679
|
+
[0],
|
|
1680
|
+
];
|
|
1681
|
+
schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
|
|
1682
|
+
var UpdateBrowserStreamRequest = [
|
|
1683
|
+
3,
|
|
1684
|
+
n0,
|
|
1685
|
+
_UBSR,
|
|
1686
|
+
0,
|
|
1687
|
+
[_bI, _sI, _sUt, _cT],
|
|
1688
|
+
[
|
|
1689
|
+
[0, 1],
|
|
1690
|
+
[
|
|
1691
|
+
0,
|
|
1692
|
+
{
|
|
1693
|
+
[_hQ]: _sI,
|
|
1694
|
+
},
|
|
1695
|
+
],
|
|
1696
|
+
() => StreamUpdate,
|
|
1697
|
+
[0, 4],
|
|
1698
|
+
],
|
|
1699
|
+
];
|
|
1700
|
+
var UpdateBrowserStreamResponse = [
|
|
1701
|
+
3,
|
|
1702
|
+
n0,
|
|
1703
|
+
_UBSRp,
|
|
1704
|
+
0,
|
|
1705
|
+
[_bI, _sI, _str, _uA],
|
|
1706
|
+
[0, 0, () => BrowserSessionStream, 5],
|
|
1707
|
+
];
|
|
1708
|
+
var ValidationException = [
|
|
1709
|
+
-3,
|
|
1710
|
+
n0,
|
|
1711
|
+
_VE,
|
|
1712
|
+
{
|
|
1713
|
+
[_e]: _c,
|
|
1714
|
+
[_hE]: 400,
|
|
1715
|
+
},
|
|
1716
|
+
[_m, _rea, _fL],
|
|
1717
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
1718
|
+
];
|
|
1719
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1720
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1721
|
+
var ViewPort = [3, n0, _VP, 0, [_w, _h], [1, 1]];
|
|
1722
|
+
var BedrockAgentCoreServiceException = [
|
|
1723
|
+
-3,
|
|
1724
|
+
_sm,
|
|
1725
|
+
"BedrockAgentCoreServiceException",
|
|
1726
|
+
0,
|
|
1727
|
+
[],
|
|
1728
|
+
[],
|
|
1729
|
+
];
|
|
1730
|
+
schema.TypeRegistry.for(_sm).registerError(BedrockAgentCoreServiceException, BedrockAgentCoreServiceException$1);
|
|
1731
|
+
var ActorSummaryList = [1, n0, _ASL, 0, () => ActorSummary];
|
|
1732
|
+
var BrowserSessionSummaries = [1, n0, _BSSro, 0, () => BrowserSessionSummary];
|
|
1733
|
+
var CodeInterpreterSessionSummaries = [1, n0, _CISSo, 0, () => CodeInterpreterSessionSummary];
|
|
1734
|
+
var ContentBlockList = [1, n0, _CBL, 0, () => ContentBlock];
|
|
1735
|
+
var EventList = [1, n0, _EL, 0, [() => Event, 0]];
|
|
1736
|
+
var EventMetadataFilterList = [1, n0, _EMFL, 0, () => EventMetadataFilterExpression];
|
|
1737
|
+
var InputContentBlockList = [1, n0, _ICBL, 0, [() => InputContentBlock, 0]];
|
|
1738
|
+
var MemoryRecordsCreateInputList = [1, n0, _MRCIL, 0, [() => MemoryRecordCreateInput, 0]];
|
|
1739
|
+
var MemoryRecordsDeleteInputList = [1, n0, _MRDIL, 0, () => MemoryRecordDeleteInput];
|
|
1740
|
+
var MemoryRecordsOutputList = [1, n0, _MROL, 0, () => MemoryRecordOutput];
|
|
1741
|
+
var MemoryRecordSummaryList = [1, n0, _MRSL, 0, [() => MemoryRecordSummary, 0]];
|
|
1742
|
+
var MemoryRecordsUpdateInputList = [1, n0, _MRUIL, 0, [() => MemoryRecordUpdateInput, 0]];
|
|
1743
|
+
var PayloadTypeList = [1, n0, _PTL, 0, [() => PayloadType, 0]];
|
|
1744
|
+
var SessionSummaryList = [1, n0, _SSL, 0, () => SessionSummary];
|
|
1745
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1746
|
+
var CustomRequestParametersType = [2, n0, _CRPT, 0, [0, 0], [() => CustomRequestValueType, 0]];
|
|
1747
|
+
var MetadataMap = [2, n0, _MM, 0, 0, () => MetadataValue];
|
|
1748
|
+
var CodeInterpreterStreamOutput = [
|
|
1749
|
+
3,
|
|
1750
|
+
n0,
|
|
1751
|
+
_CISO,
|
|
1752
|
+
{
|
|
1753
|
+
[_s]: 1,
|
|
1754
|
+
},
|
|
1755
|
+
[_resu, _aDE, _cE, _iSE, _rNFE, _sQEE, _tE, _vE],
|
|
1756
|
+
[
|
|
1757
|
+
() => CodeInterpreterResult,
|
|
1758
|
+
[() => AccessDeniedException, 0],
|
|
1759
|
+
[() => ConflictException, 0],
|
|
1760
|
+
[() => InternalServerException, 0],
|
|
1761
|
+
[() => ResourceNotFoundException, 0],
|
|
1762
|
+
[() => ServiceQuotaExceededException, 0],
|
|
1763
|
+
[() => ThrottlingException, 0],
|
|
1764
|
+
[() => ValidationException, 0],
|
|
1765
|
+
],
|
|
1766
|
+
];
|
|
1767
|
+
var Content = [3, n0, _Co, 0, [_te], [[() => SensitiveString, 0]]];
|
|
1768
|
+
var LeftExpression = [3, n0, _LE, 0, [_mK], [0]];
|
|
1769
|
+
var MemoryContent = [3, n0, _MC, 0, [_te], [[() => SensitiveString, 0]]];
|
|
1770
|
+
var MetadataValue = [3, n0, _MV, 0, [_sV], [0]];
|
|
1771
|
+
var PayloadType = [3, n0, _PT, 0, [_con, _bl], [[() => Conversational, 0], 15]];
|
|
1772
|
+
var RightExpression = [3, n0, _RE, 0, [_mV], [() => MetadataValue]];
|
|
1773
|
+
var StreamUpdate = [3, n0, _SU, 0, [_aSU], [() => AutomationStreamUpdate]];
|
|
1774
|
+
var UserIdentifier = [3, n0, _UI, 0, [_uT, _uIs], [[() => UserTokenType, 0], 0]];
|
|
1775
|
+
var BatchCreateMemoryRecords = [
|
|
1776
|
+
9,
|
|
1777
|
+
n0,
|
|
1778
|
+
_BCMR,
|
|
1779
|
+
{
|
|
1780
|
+
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchCreate", 201],
|
|
1781
|
+
},
|
|
1782
|
+
() => BatchCreateMemoryRecordsInput,
|
|
1783
|
+
() => BatchCreateMemoryRecordsOutput,
|
|
1784
|
+
];
|
|
1785
|
+
var BatchDeleteMemoryRecords = [
|
|
1786
|
+
9,
|
|
1787
|
+
n0,
|
|
1788
|
+
_BDMR,
|
|
1789
|
+
{
|
|
1790
|
+
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchDelete", 200],
|
|
1791
|
+
},
|
|
1792
|
+
() => BatchDeleteMemoryRecordsInput,
|
|
1793
|
+
() => BatchDeleteMemoryRecordsOutput,
|
|
1794
|
+
];
|
|
1795
|
+
var BatchUpdateMemoryRecords = [
|
|
1796
|
+
9,
|
|
1797
|
+
n0,
|
|
1798
|
+
_BUMR,
|
|
1799
|
+
{
|
|
1800
|
+
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchUpdate", 200],
|
|
1801
|
+
},
|
|
1802
|
+
() => BatchUpdateMemoryRecordsInput,
|
|
1803
|
+
() => BatchUpdateMemoryRecordsOutput,
|
|
1804
|
+
];
|
|
1805
|
+
var CompleteResourceTokenAuth = [
|
|
1806
|
+
9,
|
|
1807
|
+
n0,
|
|
1808
|
+
_CRTA,
|
|
1809
|
+
{
|
|
1810
|
+
[_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200],
|
|
1811
|
+
},
|
|
1812
|
+
() => CompleteResourceTokenAuthRequest,
|
|
1813
|
+
() => CompleteResourceTokenAuthResponse,
|
|
1814
|
+
];
|
|
1815
|
+
var CreateEvent = [
|
|
1816
|
+
9,
|
|
1817
|
+
n0,
|
|
1818
|
+
_CEr,
|
|
1819
|
+
{
|
|
1820
|
+
[_ht]: ["POST", "/memories/{memoryId}/events", 201],
|
|
1821
|
+
},
|
|
1822
|
+
() => CreateEventInput,
|
|
1823
|
+
() => CreateEventOutput,
|
|
1824
|
+
];
|
|
1825
|
+
var DeleteEvent = [
|
|
1826
|
+
9,
|
|
1827
|
+
n0,
|
|
1828
|
+
_DE,
|
|
1829
|
+
{
|
|
1830
|
+
[_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200],
|
|
1831
|
+
},
|
|
1832
|
+
() => DeleteEventInput,
|
|
1833
|
+
() => DeleteEventOutput,
|
|
1834
|
+
];
|
|
1835
|
+
var DeleteMemoryRecord = [
|
|
1836
|
+
9,
|
|
1837
|
+
n0,
|
|
1838
|
+
_DMR,
|
|
1839
|
+
{
|
|
1840
|
+
[_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200],
|
|
1841
|
+
},
|
|
1842
|
+
() => DeleteMemoryRecordInput,
|
|
1843
|
+
() => DeleteMemoryRecordOutput,
|
|
1844
|
+
];
|
|
1845
|
+
var GetAgentCard = [
|
|
1846
|
+
9,
|
|
1847
|
+
n0,
|
|
1848
|
+
_GAC,
|
|
1849
|
+
{
|
|
1850
|
+
[_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200],
|
|
1851
|
+
},
|
|
1852
|
+
() => GetAgentCardRequest,
|
|
1853
|
+
() => GetAgentCardResponse,
|
|
1854
|
+
];
|
|
1855
|
+
var GetBrowserSession = [
|
|
1856
|
+
9,
|
|
1857
|
+
n0,
|
|
1858
|
+
_GBS,
|
|
1859
|
+
{
|
|
1860
|
+
[_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200],
|
|
1861
|
+
},
|
|
1862
|
+
() => GetBrowserSessionRequest,
|
|
1863
|
+
() => GetBrowserSessionResponse,
|
|
1864
|
+
];
|
|
1865
|
+
var GetCodeInterpreterSession = [
|
|
1866
|
+
9,
|
|
1867
|
+
n0,
|
|
1868
|
+
_GCIS,
|
|
1869
|
+
{
|
|
1870
|
+
[_ht]: ["GET", "/code-interpreters/{codeInterpreterIdentifier}/sessions/get", 200],
|
|
1871
|
+
},
|
|
1872
|
+
() => GetCodeInterpreterSessionRequest,
|
|
1873
|
+
() => GetCodeInterpreterSessionResponse,
|
|
1874
|
+
];
|
|
1875
|
+
var GetEvent = [
|
|
1876
|
+
9,
|
|
1877
|
+
n0,
|
|
1878
|
+
_GE,
|
|
1879
|
+
{
|
|
1880
|
+
[_ht]: ["GET", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200],
|
|
1881
|
+
},
|
|
1882
|
+
() => GetEventInput,
|
|
1883
|
+
() => GetEventOutput,
|
|
1884
|
+
];
|
|
1885
|
+
var GetMemoryRecord = [
|
|
1886
|
+
9,
|
|
1887
|
+
n0,
|
|
1888
|
+
_GMR,
|
|
1889
|
+
{
|
|
1890
|
+
[_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200],
|
|
1891
|
+
},
|
|
1892
|
+
() => GetMemoryRecordInput,
|
|
1893
|
+
() => GetMemoryRecordOutput,
|
|
1894
|
+
];
|
|
1895
|
+
var GetResourceApiKey = [
|
|
1896
|
+
9,
|
|
1897
|
+
n0,
|
|
1898
|
+
_GRAK,
|
|
1899
|
+
{
|
|
1900
|
+
[_ht]: ["POST", "/identities/api-key", 200],
|
|
1901
|
+
},
|
|
1902
|
+
() => GetResourceApiKeyRequest,
|
|
1903
|
+
() => GetResourceApiKeyResponse,
|
|
1904
|
+
];
|
|
1905
|
+
var GetResourceOauth2Token = [
|
|
1906
|
+
9,
|
|
1907
|
+
n0,
|
|
1908
|
+
_GROT,
|
|
1909
|
+
{
|
|
1910
|
+
[_ht]: ["POST", "/identities/oauth2/token", 200],
|
|
1911
|
+
},
|
|
1912
|
+
() => GetResourceOauth2TokenRequest,
|
|
1913
|
+
() => GetResourceOauth2TokenResponse,
|
|
1914
|
+
];
|
|
1915
|
+
var GetWorkloadAccessToken = [
|
|
1916
|
+
9,
|
|
1917
|
+
n0,
|
|
1918
|
+
_GWAT,
|
|
1919
|
+
{
|
|
1920
|
+
[_ht]: ["POST", "/identities/GetWorkloadAccessToken", 200],
|
|
1921
|
+
},
|
|
1922
|
+
() => GetWorkloadAccessTokenRequest,
|
|
1923
|
+
() => GetWorkloadAccessTokenResponse,
|
|
1924
|
+
];
|
|
1925
|
+
var GetWorkloadAccessTokenForJWT = [
|
|
1926
|
+
9,
|
|
1927
|
+
n0,
|
|
1928
|
+
_GWATFJWT,
|
|
1929
|
+
{
|
|
1930
|
+
[_ht]: ["POST", "/identities/GetWorkloadAccessTokenForJWT", 200],
|
|
1931
|
+
},
|
|
1932
|
+
() => GetWorkloadAccessTokenForJWTRequest,
|
|
1933
|
+
() => GetWorkloadAccessTokenForJWTResponse,
|
|
1934
|
+
];
|
|
1935
|
+
var GetWorkloadAccessTokenForUserId = [
|
|
1936
|
+
9,
|
|
1937
|
+
n0,
|
|
1938
|
+
_GWATFUI,
|
|
1939
|
+
{
|
|
1940
|
+
[_ht]: ["POST", "/identities/GetWorkloadAccessTokenForUserId", 200],
|
|
1941
|
+
},
|
|
1942
|
+
() => GetWorkloadAccessTokenForUserIdRequest,
|
|
1943
|
+
() => GetWorkloadAccessTokenForUserIdResponse,
|
|
1944
|
+
];
|
|
1945
|
+
var InvokeAgentRuntime = [
|
|
1946
|
+
9,
|
|
1947
|
+
n0,
|
|
1948
|
+
_IAR,
|
|
1949
|
+
{
|
|
1950
|
+
[_ht]: ["POST", "/runtimes/{agentRuntimeArn}/invocations", 200],
|
|
1951
|
+
},
|
|
1952
|
+
() => InvokeAgentRuntimeRequest,
|
|
1953
|
+
() => InvokeAgentRuntimeResponse,
|
|
1954
|
+
];
|
|
1955
|
+
var InvokeCodeInterpreter = [
|
|
1956
|
+
9,
|
|
1957
|
+
n0,
|
|
1958
|
+
_ICI,
|
|
1959
|
+
{
|
|
1960
|
+
[_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/tools/invoke", 200],
|
|
1961
|
+
},
|
|
1962
|
+
() => InvokeCodeInterpreterRequest,
|
|
1963
|
+
() => InvokeCodeInterpreterResponse,
|
|
1964
|
+
];
|
|
1965
|
+
var ListActors = [
|
|
1966
|
+
9,
|
|
1967
|
+
n0,
|
|
1968
|
+
_LA,
|
|
1969
|
+
{
|
|
1970
|
+
[_ht]: ["POST", "/memories/{memoryId}/actors", 200],
|
|
1971
|
+
},
|
|
1972
|
+
() => ListActorsInput,
|
|
1973
|
+
() => ListActorsOutput,
|
|
1974
|
+
];
|
|
1975
|
+
var ListBrowserSessions = [
|
|
1976
|
+
9,
|
|
1977
|
+
n0,
|
|
1978
|
+
_LBS,
|
|
1979
|
+
{
|
|
1980
|
+
[_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200],
|
|
1981
|
+
},
|
|
1982
|
+
() => ListBrowserSessionsRequest,
|
|
1983
|
+
() => ListBrowserSessionsResponse,
|
|
1984
|
+
];
|
|
1985
|
+
var ListCodeInterpreterSessions = [
|
|
1986
|
+
9,
|
|
1987
|
+
n0,
|
|
1988
|
+
_LCIS,
|
|
1989
|
+
{
|
|
1990
|
+
[_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/sessions/list", 200],
|
|
1991
|
+
},
|
|
1992
|
+
() => ListCodeInterpreterSessionsRequest,
|
|
1993
|
+
() => ListCodeInterpreterSessionsResponse,
|
|
1994
|
+
];
|
|
1995
|
+
var ListEvents = [
|
|
1996
|
+
9,
|
|
1997
|
+
n0,
|
|
1998
|
+
_LEi,
|
|
1999
|
+
{
|
|
2000
|
+
[_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}", 200],
|
|
2001
|
+
},
|
|
2002
|
+
() => ListEventsInput,
|
|
2003
|
+
() => ListEventsOutput,
|
|
2004
|
+
];
|
|
2005
|
+
var ListMemoryRecords = [
|
|
2006
|
+
9,
|
|
2007
|
+
n0,
|
|
2008
|
+
_LMR,
|
|
2009
|
+
{
|
|
2010
|
+
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200],
|
|
2011
|
+
},
|
|
2012
|
+
() => ListMemoryRecordsInput,
|
|
2013
|
+
() => ListMemoryRecordsOutput,
|
|
2014
|
+
];
|
|
2015
|
+
var ListSessions = [
|
|
2016
|
+
9,
|
|
2017
|
+
n0,
|
|
2018
|
+
_LS,
|
|
2019
|
+
{
|
|
2020
|
+
[_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200],
|
|
2021
|
+
},
|
|
2022
|
+
() => ListSessionsInput,
|
|
2023
|
+
() => ListSessionsOutput,
|
|
2024
|
+
];
|
|
2025
|
+
var RetrieveMemoryRecords = [
|
|
2026
|
+
9,
|
|
2027
|
+
n0,
|
|
2028
|
+
_RMR,
|
|
2029
|
+
{
|
|
2030
|
+
[_ht]: ["POST", "/memories/{memoryId}/retrieve", 200],
|
|
2031
|
+
},
|
|
2032
|
+
() => RetrieveMemoryRecordsInput,
|
|
2033
|
+
() => RetrieveMemoryRecordsOutput,
|
|
2034
|
+
];
|
|
2035
|
+
var StartBrowserSession = [
|
|
2036
|
+
9,
|
|
2037
|
+
n0,
|
|
2038
|
+
_SBS,
|
|
2039
|
+
{
|
|
2040
|
+
[_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200],
|
|
2041
|
+
},
|
|
2042
|
+
() => StartBrowserSessionRequest,
|
|
2043
|
+
() => StartBrowserSessionResponse,
|
|
2044
|
+
];
|
|
2045
|
+
var StartCodeInterpreterSession = [
|
|
2046
|
+
9,
|
|
2047
|
+
n0,
|
|
2048
|
+
_SCIS,
|
|
2049
|
+
{
|
|
2050
|
+
[_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/start", 200],
|
|
2051
|
+
},
|
|
2052
|
+
() => StartCodeInterpreterSessionRequest,
|
|
2053
|
+
() => StartCodeInterpreterSessionResponse,
|
|
2054
|
+
];
|
|
2055
|
+
var StopBrowserSession = [
|
|
2056
|
+
9,
|
|
2057
|
+
n0,
|
|
2058
|
+
_SBSt,
|
|
2059
|
+
{
|
|
2060
|
+
[_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200],
|
|
2061
|
+
},
|
|
2062
|
+
() => StopBrowserSessionRequest,
|
|
2063
|
+
() => StopBrowserSessionResponse,
|
|
2064
|
+
];
|
|
2065
|
+
var StopCodeInterpreterSession = [
|
|
2066
|
+
9,
|
|
2067
|
+
n0,
|
|
2068
|
+
_SCISt,
|
|
2069
|
+
{
|
|
2070
|
+
[_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/stop", 200],
|
|
2071
|
+
},
|
|
2072
|
+
() => StopCodeInterpreterSessionRequest,
|
|
2073
|
+
() => StopCodeInterpreterSessionResponse,
|
|
2074
|
+
];
|
|
2075
|
+
var StopRuntimeSession = [
|
|
2076
|
+
9,
|
|
2077
|
+
n0,
|
|
2078
|
+
_SRS,
|
|
2079
|
+
{
|
|
2080
|
+
[_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200],
|
|
2081
|
+
},
|
|
2082
|
+
() => StopRuntimeSessionRequest,
|
|
2083
|
+
() => StopRuntimeSessionResponse,
|
|
2084
|
+
];
|
|
2085
|
+
var UpdateBrowserStream = [
|
|
2086
|
+
9,
|
|
2087
|
+
n0,
|
|
2088
|
+
_UBS,
|
|
2089
|
+
{
|
|
2090
|
+
[_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200],
|
|
2091
|
+
},
|
|
2092
|
+
() => UpdateBrowserStreamRequest,
|
|
2093
|
+
() => UpdateBrowserStreamResponse,
|
|
2094
|
+
];
|
|
2210
2095
|
|
|
2211
2096
|
class BatchCreateMemoryRecordsCommand extends smithyClient.Command
|
|
2212
2097
|
.classBuilder()
|
|
2213
2098
|
.ep(commonParams)
|
|
2214
2099
|
.m(function (Command, cs, config, o) {
|
|
2215
|
-
return [
|
|
2216
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2217
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2218
|
-
];
|
|
2100
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2219
2101
|
})
|
|
2220
2102
|
.s("AmazonBedrockAgentCore", "BatchCreateMemoryRecords", {})
|
|
2221
2103
|
.n("BedrockAgentCoreClient", "BatchCreateMemoryRecordsCommand")
|
|
2222
|
-
.
|
|
2223
|
-
.ser(se_BatchCreateMemoryRecordsCommand)
|
|
2224
|
-
.de(de_BatchCreateMemoryRecordsCommand)
|
|
2104
|
+
.sc(BatchCreateMemoryRecords)
|
|
2225
2105
|
.build() {
|
|
2226
2106
|
}
|
|
2227
2107
|
|
|
@@ -2229,16 +2109,11 @@ class BatchDeleteMemoryRecordsCommand extends smithyClient.Command
|
|
|
2229
2109
|
.classBuilder()
|
|
2230
2110
|
.ep(commonParams)
|
|
2231
2111
|
.m(function (Command, cs, config, o) {
|
|
2232
|
-
return [
|
|
2233
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2234
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2235
|
-
];
|
|
2112
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2236
2113
|
})
|
|
2237
2114
|
.s("AmazonBedrockAgentCore", "BatchDeleteMemoryRecords", {})
|
|
2238
2115
|
.n("BedrockAgentCoreClient", "BatchDeleteMemoryRecordsCommand")
|
|
2239
|
-
.
|
|
2240
|
-
.ser(se_BatchDeleteMemoryRecordsCommand)
|
|
2241
|
-
.de(de_BatchDeleteMemoryRecordsCommand)
|
|
2116
|
+
.sc(BatchDeleteMemoryRecords)
|
|
2242
2117
|
.build() {
|
|
2243
2118
|
}
|
|
2244
2119
|
|
|
@@ -2246,16 +2121,11 @@ class BatchUpdateMemoryRecordsCommand extends smithyClient.Command
|
|
|
2246
2121
|
.classBuilder()
|
|
2247
2122
|
.ep(commonParams)
|
|
2248
2123
|
.m(function (Command, cs, config, o) {
|
|
2249
|
-
return [
|
|
2250
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2251
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2252
|
-
];
|
|
2124
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2253
2125
|
})
|
|
2254
2126
|
.s("AmazonBedrockAgentCore", "BatchUpdateMemoryRecords", {})
|
|
2255
2127
|
.n("BedrockAgentCoreClient", "BatchUpdateMemoryRecordsCommand")
|
|
2256
|
-
.
|
|
2257
|
-
.ser(se_BatchUpdateMemoryRecordsCommand)
|
|
2258
|
-
.de(de_BatchUpdateMemoryRecordsCommand)
|
|
2128
|
+
.sc(BatchUpdateMemoryRecords)
|
|
2259
2129
|
.build() {
|
|
2260
2130
|
}
|
|
2261
2131
|
|
|
@@ -2263,16 +2133,11 @@ class CompleteResourceTokenAuthCommand extends smithyClient.Command
|
|
|
2263
2133
|
.classBuilder()
|
|
2264
2134
|
.ep(commonParams)
|
|
2265
2135
|
.m(function (Command, cs, config, o) {
|
|
2266
|
-
return [
|
|
2267
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2268
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2269
|
-
];
|
|
2136
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2270
2137
|
})
|
|
2271
2138
|
.s("AmazonBedrockAgentCore", "CompleteResourceTokenAuth", {})
|
|
2272
2139
|
.n("BedrockAgentCoreClient", "CompleteResourceTokenAuthCommand")
|
|
2273
|
-
.
|
|
2274
|
-
.ser(se_CompleteResourceTokenAuthCommand)
|
|
2275
|
-
.de(de_CompleteResourceTokenAuthCommand)
|
|
2140
|
+
.sc(CompleteResourceTokenAuth)
|
|
2276
2141
|
.build() {
|
|
2277
2142
|
}
|
|
2278
2143
|
|
|
@@ -2280,16 +2145,11 @@ class CreateEventCommand extends smithyClient.Command
|
|
|
2280
2145
|
.classBuilder()
|
|
2281
2146
|
.ep(commonParams)
|
|
2282
2147
|
.m(function (Command, cs, config, o) {
|
|
2283
|
-
return [
|
|
2284
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2285
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2286
|
-
];
|
|
2148
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2287
2149
|
})
|
|
2288
2150
|
.s("AmazonBedrockAgentCore", "CreateEvent", {})
|
|
2289
2151
|
.n("BedrockAgentCoreClient", "CreateEventCommand")
|
|
2290
|
-
.
|
|
2291
|
-
.ser(se_CreateEventCommand)
|
|
2292
|
-
.de(de_CreateEventCommand)
|
|
2152
|
+
.sc(CreateEvent)
|
|
2293
2153
|
.build() {
|
|
2294
2154
|
}
|
|
2295
2155
|
|
|
@@ -2297,16 +2157,11 @@ class DeleteEventCommand extends smithyClient.Command
|
|
|
2297
2157
|
.classBuilder()
|
|
2298
2158
|
.ep(commonParams)
|
|
2299
2159
|
.m(function (Command, cs, config, o) {
|
|
2300
|
-
return [
|
|
2301
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2302
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2303
|
-
];
|
|
2160
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2304
2161
|
})
|
|
2305
2162
|
.s("AmazonBedrockAgentCore", "DeleteEvent", {})
|
|
2306
2163
|
.n("BedrockAgentCoreClient", "DeleteEventCommand")
|
|
2307
|
-
.
|
|
2308
|
-
.ser(se_DeleteEventCommand)
|
|
2309
|
-
.de(de_DeleteEventCommand)
|
|
2164
|
+
.sc(DeleteEvent)
|
|
2310
2165
|
.build() {
|
|
2311
2166
|
}
|
|
2312
2167
|
|
|
@@ -2314,16 +2169,11 @@ class DeleteMemoryRecordCommand extends smithyClient.Command
|
|
|
2314
2169
|
.classBuilder()
|
|
2315
2170
|
.ep(commonParams)
|
|
2316
2171
|
.m(function (Command, cs, config, o) {
|
|
2317
|
-
return [
|
|
2318
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2319
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2320
|
-
];
|
|
2172
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2321
2173
|
})
|
|
2322
2174
|
.s("AmazonBedrockAgentCore", "DeleteMemoryRecord", {})
|
|
2323
2175
|
.n("BedrockAgentCoreClient", "DeleteMemoryRecordCommand")
|
|
2324
|
-
.
|
|
2325
|
-
.ser(se_DeleteMemoryRecordCommand)
|
|
2326
|
-
.de(de_DeleteMemoryRecordCommand)
|
|
2176
|
+
.sc(DeleteMemoryRecord)
|
|
2327
2177
|
.build() {
|
|
2328
2178
|
}
|
|
2329
2179
|
|
|
@@ -2331,16 +2181,11 @@ class GetAgentCardCommand extends smithyClient.Command
|
|
|
2331
2181
|
.classBuilder()
|
|
2332
2182
|
.ep(commonParams)
|
|
2333
2183
|
.m(function (Command, cs, config, o) {
|
|
2334
|
-
return [
|
|
2335
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2336
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2337
|
-
];
|
|
2184
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2338
2185
|
})
|
|
2339
2186
|
.s("AmazonBedrockAgentCore", "GetAgentCard", {})
|
|
2340
2187
|
.n("BedrockAgentCoreClient", "GetAgentCardCommand")
|
|
2341
|
-
.
|
|
2342
|
-
.ser(se_GetAgentCardCommand)
|
|
2343
|
-
.de(de_GetAgentCardCommand)
|
|
2188
|
+
.sc(GetAgentCard)
|
|
2344
2189
|
.build() {
|
|
2345
2190
|
}
|
|
2346
2191
|
|
|
@@ -2348,16 +2193,11 @@ class GetBrowserSessionCommand extends smithyClient.Command
|
|
|
2348
2193
|
.classBuilder()
|
|
2349
2194
|
.ep(commonParams)
|
|
2350
2195
|
.m(function (Command, cs, config, o) {
|
|
2351
|
-
return [
|
|
2352
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2353
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2354
|
-
];
|
|
2196
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2355
2197
|
})
|
|
2356
2198
|
.s("AmazonBedrockAgentCore", "GetBrowserSession", {})
|
|
2357
2199
|
.n("BedrockAgentCoreClient", "GetBrowserSessionCommand")
|
|
2358
|
-
.
|
|
2359
|
-
.ser(se_GetBrowserSessionCommand)
|
|
2360
|
-
.de(de_GetBrowserSessionCommand)
|
|
2200
|
+
.sc(GetBrowserSession)
|
|
2361
2201
|
.build() {
|
|
2362
2202
|
}
|
|
2363
2203
|
|
|
@@ -2365,16 +2205,11 @@ class GetCodeInterpreterSessionCommand extends smithyClient.Command
|
|
|
2365
2205
|
.classBuilder()
|
|
2366
2206
|
.ep(commonParams)
|
|
2367
2207
|
.m(function (Command, cs, config, o) {
|
|
2368
|
-
return [
|
|
2369
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2370
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2371
|
-
];
|
|
2208
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2372
2209
|
})
|
|
2373
2210
|
.s("AmazonBedrockAgentCore", "GetCodeInterpreterSession", {})
|
|
2374
2211
|
.n("BedrockAgentCoreClient", "GetCodeInterpreterSessionCommand")
|
|
2375
|
-
.
|
|
2376
|
-
.ser(se_GetCodeInterpreterSessionCommand)
|
|
2377
|
-
.de(de_GetCodeInterpreterSessionCommand)
|
|
2212
|
+
.sc(GetCodeInterpreterSession)
|
|
2378
2213
|
.build() {
|
|
2379
2214
|
}
|
|
2380
2215
|
|
|
@@ -2382,16 +2217,11 @@ class GetEventCommand extends smithyClient.Command
|
|
|
2382
2217
|
.classBuilder()
|
|
2383
2218
|
.ep(commonParams)
|
|
2384
2219
|
.m(function (Command, cs, config, o) {
|
|
2385
|
-
return [
|
|
2386
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2387
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2388
|
-
];
|
|
2220
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2389
2221
|
})
|
|
2390
2222
|
.s("AmazonBedrockAgentCore", "GetEvent", {})
|
|
2391
2223
|
.n("BedrockAgentCoreClient", "GetEventCommand")
|
|
2392
|
-
.
|
|
2393
|
-
.ser(se_GetEventCommand)
|
|
2394
|
-
.de(de_GetEventCommand)
|
|
2224
|
+
.sc(GetEvent)
|
|
2395
2225
|
.build() {
|
|
2396
2226
|
}
|
|
2397
2227
|
|
|
@@ -2399,16 +2229,11 @@ class GetMemoryRecordCommand extends smithyClient.Command
|
|
|
2399
2229
|
.classBuilder()
|
|
2400
2230
|
.ep(commonParams)
|
|
2401
2231
|
.m(function (Command, cs, config, o) {
|
|
2402
|
-
return [
|
|
2403
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2404
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2405
|
-
];
|
|
2232
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2406
2233
|
})
|
|
2407
2234
|
.s("AmazonBedrockAgentCore", "GetMemoryRecord", {})
|
|
2408
2235
|
.n("BedrockAgentCoreClient", "GetMemoryRecordCommand")
|
|
2409
|
-
.
|
|
2410
|
-
.ser(se_GetMemoryRecordCommand)
|
|
2411
|
-
.de(de_GetMemoryRecordCommand)
|
|
2236
|
+
.sc(GetMemoryRecord)
|
|
2412
2237
|
.build() {
|
|
2413
2238
|
}
|
|
2414
2239
|
|
|
@@ -2416,16 +2241,11 @@ class GetResourceApiKeyCommand extends smithyClient.Command
|
|
|
2416
2241
|
.classBuilder()
|
|
2417
2242
|
.ep(commonParams)
|
|
2418
2243
|
.m(function (Command, cs, config, o) {
|
|
2419
|
-
return [
|
|
2420
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2421
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2422
|
-
];
|
|
2244
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2423
2245
|
})
|
|
2424
2246
|
.s("AmazonBedrockAgentCore", "GetResourceApiKey", {})
|
|
2425
2247
|
.n("BedrockAgentCoreClient", "GetResourceApiKeyCommand")
|
|
2426
|
-
.
|
|
2427
|
-
.ser(se_GetResourceApiKeyCommand)
|
|
2428
|
-
.de(de_GetResourceApiKeyCommand)
|
|
2248
|
+
.sc(GetResourceApiKey)
|
|
2429
2249
|
.build() {
|
|
2430
2250
|
}
|
|
2431
2251
|
|
|
@@ -2433,16 +2253,11 @@ class GetResourceOauth2TokenCommand extends smithyClient.Command
|
|
|
2433
2253
|
.classBuilder()
|
|
2434
2254
|
.ep(commonParams)
|
|
2435
2255
|
.m(function (Command, cs, config, o) {
|
|
2436
|
-
return [
|
|
2437
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2438
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2439
|
-
];
|
|
2256
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2440
2257
|
})
|
|
2441
2258
|
.s("AmazonBedrockAgentCore", "GetResourceOauth2Token", {})
|
|
2442
2259
|
.n("BedrockAgentCoreClient", "GetResourceOauth2TokenCommand")
|
|
2443
|
-
.
|
|
2444
|
-
.ser(se_GetResourceOauth2TokenCommand)
|
|
2445
|
-
.de(de_GetResourceOauth2TokenCommand)
|
|
2260
|
+
.sc(GetResourceOauth2Token)
|
|
2446
2261
|
.build() {
|
|
2447
2262
|
}
|
|
2448
2263
|
|
|
@@ -2450,16 +2265,11 @@ class GetWorkloadAccessTokenCommand extends smithyClient.Command
|
|
|
2450
2265
|
.classBuilder()
|
|
2451
2266
|
.ep(commonParams)
|
|
2452
2267
|
.m(function (Command, cs, config, o) {
|
|
2453
|
-
return [
|
|
2454
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2455
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2456
|
-
];
|
|
2268
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2457
2269
|
})
|
|
2458
2270
|
.s("AmazonBedrockAgentCore", "GetWorkloadAccessToken", {})
|
|
2459
2271
|
.n("BedrockAgentCoreClient", "GetWorkloadAccessTokenCommand")
|
|
2460
|
-
.
|
|
2461
|
-
.ser(se_GetWorkloadAccessTokenCommand)
|
|
2462
|
-
.de(de_GetWorkloadAccessTokenCommand)
|
|
2272
|
+
.sc(GetWorkloadAccessToken)
|
|
2463
2273
|
.build() {
|
|
2464
2274
|
}
|
|
2465
2275
|
|
|
@@ -2467,16 +2277,11 @@ class GetWorkloadAccessTokenForJWTCommand extends smithyClient.Command
|
|
|
2467
2277
|
.classBuilder()
|
|
2468
2278
|
.ep(commonParams)
|
|
2469
2279
|
.m(function (Command, cs, config, o) {
|
|
2470
|
-
return [
|
|
2471
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2472
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2473
|
-
];
|
|
2280
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2474
2281
|
})
|
|
2475
2282
|
.s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForJWT", {})
|
|
2476
2283
|
.n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForJWTCommand")
|
|
2477
|
-
.
|
|
2478
|
-
.ser(se_GetWorkloadAccessTokenForJWTCommand)
|
|
2479
|
-
.de(de_GetWorkloadAccessTokenForJWTCommand)
|
|
2284
|
+
.sc(GetWorkloadAccessTokenForJWT)
|
|
2480
2285
|
.build() {
|
|
2481
2286
|
}
|
|
2482
2287
|
|
|
@@ -2484,16 +2289,11 @@ class GetWorkloadAccessTokenForUserIdCommand extends smithyClient.Command
|
|
|
2484
2289
|
.classBuilder()
|
|
2485
2290
|
.ep(commonParams)
|
|
2486
2291
|
.m(function (Command, cs, config, o) {
|
|
2487
|
-
return [
|
|
2488
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2489
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2490
|
-
];
|
|
2292
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2491
2293
|
})
|
|
2492
2294
|
.s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForUserId", {})
|
|
2493
2295
|
.n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForUserIdCommand")
|
|
2494
|
-
.
|
|
2495
|
-
.ser(se_GetWorkloadAccessTokenForUserIdCommand)
|
|
2496
|
-
.de(de_GetWorkloadAccessTokenForUserIdCommand)
|
|
2296
|
+
.sc(GetWorkloadAccessTokenForUserId)
|
|
2497
2297
|
.build() {
|
|
2498
2298
|
}
|
|
2499
2299
|
|
|
@@ -2501,16 +2301,11 @@ class InvokeAgentRuntimeCommand extends smithyClient.Command
|
|
|
2501
2301
|
.classBuilder()
|
|
2502
2302
|
.ep(commonParams)
|
|
2503
2303
|
.m(function (Command, cs, config, o) {
|
|
2504
|
-
return [
|
|
2505
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2506
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2507
|
-
];
|
|
2304
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2508
2305
|
})
|
|
2509
2306
|
.s("AmazonBedrockAgentCore", "InvokeAgentRuntime", {})
|
|
2510
2307
|
.n("BedrockAgentCoreClient", "InvokeAgentRuntimeCommand")
|
|
2511
|
-
.
|
|
2512
|
-
.ser(se_InvokeAgentRuntimeCommand)
|
|
2513
|
-
.de(de_InvokeAgentRuntimeCommand)
|
|
2308
|
+
.sc(InvokeAgentRuntime)
|
|
2514
2309
|
.build() {
|
|
2515
2310
|
}
|
|
2516
2311
|
|
|
@@ -2518,10 +2313,7 @@ class InvokeCodeInterpreterCommand extends smithyClient.Command
|
|
|
2518
2313
|
.classBuilder()
|
|
2519
2314
|
.ep(commonParams)
|
|
2520
2315
|
.m(function (Command, cs, config, o) {
|
|
2521
|
-
return [
|
|
2522
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2523
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2524
|
-
];
|
|
2316
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2525
2317
|
})
|
|
2526
2318
|
.s("AmazonBedrockAgentCore", "InvokeCodeInterpreter", {
|
|
2527
2319
|
eventStream: {
|
|
@@ -2529,9 +2321,7 @@ class InvokeCodeInterpreterCommand extends smithyClient.Command
|
|
|
2529
2321
|
},
|
|
2530
2322
|
})
|
|
2531
2323
|
.n("BedrockAgentCoreClient", "InvokeCodeInterpreterCommand")
|
|
2532
|
-
.
|
|
2533
|
-
.ser(se_InvokeCodeInterpreterCommand)
|
|
2534
|
-
.de(de_InvokeCodeInterpreterCommand)
|
|
2324
|
+
.sc(InvokeCodeInterpreter)
|
|
2535
2325
|
.build() {
|
|
2536
2326
|
}
|
|
2537
2327
|
|
|
@@ -2539,16 +2329,11 @@ class ListActorsCommand extends smithyClient.Command
|
|
|
2539
2329
|
.classBuilder()
|
|
2540
2330
|
.ep(commonParams)
|
|
2541
2331
|
.m(function (Command, cs, config, o) {
|
|
2542
|
-
return [
|
|
2543
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2544
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2545
|
-
];
|
|
2332
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2546
2333
|
})
|
|
2547
2334
|
.s("AmazonBedrockAgentCore", "ListActors", {})
|
|
2548
2335
|
.n("BedrockAgentCoreClient", "ListActorsCommand")
|
|
2549
|
-
.
|
|
2550
|
-
.ser(se_ListActorsCommand)
|
|
2551
|
-
.de(de_ListActorsCommand)
|
|
2336
|
+
.sc(ListActors)
|
|
2552
2337
|
.build() {
|
|
2553
2338
|
}
|
|
2554
2339
|
|
|
@@ -2556,16 +2341,11 @@ class ListBrowserSessionsCommand extends smithyClient.Command
|
|
|
2556
2341
|
.classBuilder()
|
|
2557
2342
|
.ep(commonParams)
|
|
2558
2343
|
.m(function (Command, cs, config, o) {
|
|
2559
|
-
return [
|
|
2560
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2561
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2562
|
-
];
|
|
2344
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2563
2345
|
})
|
|
2564
2346
|
.s("AmazonBedrockAgentCore", "ListBrowserSessions", {})
|
|
2565
2347
|
.n("BedrockAgentCoreClient", "ListBrowserSessionsCommand")
|
|
2566
|
-
.
|
|
2567
|
-
.ser(se_ListBrowserSessionsCommand)
|
|
2568
|
-
.de(de_ListBrowserSessionsCommand)
|
|
2348
|
+
.sc(ListBrowserSessions)
|
|
2569
2349
|
.build() {
|
|
2570
2350
|
}
|
|
2571
2351
|
|
|
@@ -2573,16 +2353,11 @@ class ListCodeInterpreterSessionsCommand extends smithyClient.Command
|
|
|
2573
2353
|
.classBuilder()
|
|
2574
2354
|
.ep(commonParams)
|
|
2575
2355
|
.m(function (Command, cs, config, o) {
|
|
2576
|
-
return [
|
|
2577
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2578
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2579
|
-
];
|
|
2356
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2580
2357
|
})
|
|
2581
2358
|
.s("AmazonBedrockAgentCore", "ListCodeInterpreterSessions", {})
|
|
2582
2359
|
.n("BedrockAgentCoreClient", "ListCodeInterpreterSessionsCommand")
|
|
2583
|
-
.
|
|
2584
|
-
.ser(se_ListCodeInterpreterSessionsCommand)
|
|
2585
|
-
.de(de_ListCodeInterpreterSessionsCommand)
|
|
2360
|
+
.sc(ListCodeInterpreterSessions)
|
|
2586
2361
|
.build() {
|
|
2587
2362
|
}
|
|
2588
2363
|
|
|
@@ -2590,16 +2365,11 @@ class ListEventsCommand extends smithyClient.Command
|
|
|
2590
2365
|
.classBuilder()
|
|
2591
2366
|
.ep(commonParams)
|
|
2592
2367
|
.m(function (Command, cs, config, o) {
|
|
2593
|
-
return [
|
|
2594
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2595
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2596
|
-
];
|
|
2368
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2597
2369
|
})
|
|
2598
2370
|
.s("AmazonBedrockAgentCore", "ListEvents", {})
|
|
2599
2371
|
.n("BedrockAgentCoreClient", "ListEventsCommand")
|
|
2600
|
-
.
|
|
2601
|
-
.ser(se_ListEventsCommand)
|
|
2602
|
-
.de(de_ListEventsCommand)
|
|
2372
|
+
.sc(ListEvents)
|
|
2603
2373
|
.build() {
|
|
2604
2374
|
}
|
|
2605
2375
|
|
|
@@ -2607,16 +2377,11 @@ class ListMemoryRecordsCommand extends smithyClient.Command
|
|
|
2607
2377
|
.classBuilder()
|
|
2608
2378
|
.ep(commonParams)
|
|
2609
2379
|
.m(function (Command, cs, config, o) {
|
|
2610
|
-
return [
|
|
2611
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2612
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2613
|
-
];
|
|
2380
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2614
2381
|
})
|
|
2615
2382
|
.s("AmazonBedrockAgentCore", "ListMemoryRecords", {})
|
|
2616
2383
|
.n("BedrockAgentCoreClient", "ListMemoryRecordsCommand")
|
|
2617
|
-
.
|
|
2618
|
-
.ser(se_ListMemoryRecordsCommand)
|
|
2619
|
-
.de(de_ListMemoryRecordsCommand)
|
|
2384
|
+
.sc(ListMemoryRecords)
|
|
2620
2385
|
.build() {
|
|
2621
2386
|
}
|
|
2622
2387
|
|
|
@@ -2624,16 +2389,11 @@ class ListSessionsCommand extends smithyClient.Command
|
|
|
2624
2389
|
.classBuilder()
|
|
2625
2390
|
.ep(commonParams)
|
|
2626
2391
|
.m(function (Command, cs, config, o) {
|
|
2627
|
-
return [
|
|
2628
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2629
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2630
|
-
];
|
|
2392
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2631
2393
|
})
|
|
2632
2394
|
.s("AmazonBedrockAgentCore", "ListSessions", {})
|
|
2633
2395
|
.n("BedrockAgentCoreClient", "ListSessionsCommand")
|
|
2634
|
-
.
|
|
2635
|
-
.ser(se_ListSessionsCommand)
|
|
2636
|
-
.de(de_ListSessionsCommand)
|
|
2396
|
+
.sc(ListSessions)
|
|
2637
2397
|
.build() {
|
|
2638
2398
|
}
|
|
2639
2399
|
|
|
@@ -2641,16 +2401,11 @@ class RetrieveMemoryRecordsCommand extends smithyClient.Command
|
|
|
2641
2401
|
.classBuilder()
|
|
2642
2402
|
.ep(commonParams)
|
|
2643
2403
|
.m(function (Command, cs, config, o) {
|
|
2644
|
-
return [
|
|
2645
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2646
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2647
|
-
];
|
|
2404
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2648
2405
|
})
|
|
2649
2406
|
.s("AmazonBedrockAgentCore", "RetrieveMemoryRecords", {})
|
|
2650
2407
|
.n("BedrockAgentCoreClient", "RetrieveMemoryRecordsCommand")
|
|
2651
|
-
.
|
|
2652
|
-
.ser(se_RetrieveMemoryRecordsCommand)
|
|
2653
|
-
.de(de_RetrieveMemoryRecordsCommand)
|
|
2408
|
+
.sc(RetrieveMemoryRecords)
|
|
2654
2409
|
.build() {
|
|
2655
2410
|
}
|
|
2656
2411
|
|
|
@@ -2658,16 +2413,11 @@ class StartBrowserSessionCommand extends smithyClient.Command
|
|
|
2658
2413
|
.classBuilder()
|
|
2659
2414
|
.ep(commonParams)
|
|
2660
2415
|
.m(function (Command, cs, config, o) {
|
|
2661
|
-
return [
|
|
2662
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2663
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2664
|
-
];
|
|
2416
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2665
2417
|
})
|
|
2666
2418
|
.s("AmazonBedrockAgentCore", "StartBrowserSession", {})
|
|
2667
2419
|
.n("BedrockAgentCoreClient", "StartBrowserSessionCommand")
|
|
2668
|
-
.
|
|
2669
|
-
.ser(se_StartBrowserSessionCommand)
|
|
2670
|
-
.de(de_StartBrowserSessionCommand)
|
|
2420
|
+
.sc(StartBrowserSession)
|
|
2671
2421
|
.build() {
|
|
2672
2422
|
}
|
|
2673
2423
|
|
|
@@ -2675,16 +2425,11 @@ class StartCodeInterpreterSessionCommand extends smithyClient.Command
|
|
|
2675
2425
|
.classBuilder()
|
|
2676
2426
|
.ep(commonParams)
|
|
2677
2427
|
.m(function (Command, cs, config, o) {
|
|
2678
|
-
return [
|
|
2679
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2680
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2681
|
-
];
|
|
2428
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2682
2429
|
})
|
|
2683
2430
|
.s("AmazonBedrockAgentCore", "StartCodeInterpreterSession", {})
|
|
2684
2431
|
.n("BedrockAgentCoreClient", "StartCodeInterpreterSessionCommand")
|
|
2685
|
-
.
|
|
2686
|
-
.ser(se_StartCodeInterpreterSessionCommand)
|
|
2687
|
-
.de(de_StartCodeInterpreterSessionCommand)
|
|
2432
|
+
.sc(StartCodeInterpreterSession)
|
|
2688
2433
|
.build() {
|
|
2689
2434
|
}
|
|
2690
2435
|
|
|
@@ -2692,16 +2437,11 @@ class StopBrowserSessionCommand extends smithyClient.Command
|
|
|
2692
2437
|
.classBuilder()
|
|
2693
2438
|
.ep(commonParams)
|
|
2694
2439
|
.m(function (Command, cs, config, o) {
|
|
2695
|
-
return [
|
|
2696
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2697
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2698
|
-
];
|
|
2440
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2699
2441
|
})
|
|
2700
2442
|
.s("AmazonBedrockAgentCore", "StopBrowserSession", {})
|
|
2701
2443
|
.n("BedrockAgentCoreClient", "StopBrowserSessionCommand")
|
|
2702
|
-
.
|
|
2703
|
-
.ser(se_StopBrowserSessionCommand)
|
|
2704
|
-
.de(de_StopBrowserSessionCommand)
|
|
2444
|
+
.sc(StopBrowserSession)
|
|
2705
2445
|
.build() {
|
|
2706
2446
|
}
|
|
2707
2447
|
|
|
@@ -2709,16 +2449,11 @@ class StopCodeInterpreterSessionCommand extends smithyClient.Command
|
|
|
2709
2449
|
.classBuilder()
|
|
2710
2450
|
.ep(commonParams)
|
|
2711
2451
|
.m(function (Command, cs, config, o) {
|
|
2712
|
-
return [
|
|
2713
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2714
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2715
|
-
];
|
|
2452
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2716
2453
|
})
|
|
2717
2454
|
.s("AmazonBedrockAgentCore", "StopCodeInterpreterSession", {})
|
|
2718
2455
|
.n("BedrockAgentCoreClient", "StopCodeInterpreterSessionCommand")
|
|
2719
|
-
.
|
|
2720
|
-
.ser(se_StopCodeInterpreterSessionCommand)
|
|
2721
|
-
.de(de_StopCodeInterpreterSessionCommand)
|
|
2456
|
+
.sc(StopCodeInterpreterSession)
|
|
2722
2457
|
.build() {
|
|
2723
2458
|
}
|
|
2724
2459
|
|
|
@@ -2726,16 +2461,11 @@ class StopRuntimeSessionCommand extends smithyClient.Command
|
|
|
2726
2461
|
.classBuilder()
|
|
2727
2462
|
.ep(commonParams)
|
|
2728
2463
|
.m(function (Command, cs, config, o) {
|
|
2729
|
-
return [
|
|
2730
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2731
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2732
|
-
];
|
|
2464
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2733
2465
|
})
|
|
2734
2466
|
.s("AmazonBedrockAgentCore", "StopRuntimeSession", {})
|
|
2735
2467
|
.n("BedrockAgentCoreClient", "StopRuntimeSessionCommand")
|
|
2736
|
-
.
|
|
2737
|
-
.ser(se_StopRuntimeSessionCommand)
|
|
2738
|
-
.de(de_StopRuntimeSessionCommand)
|
|
2468
|
+
.sc(StopRuntimeSession)
|
|
2739
2469
|
.build() {
|
|
2740
2470
|
}
|
|
2741
2471
|
|
|
@@ -2743,16 +2473,11 @@ class UpdateBrowserStreamCommand extends smithyClient.Command
|
|
|
2743
2473
|
.classBuilder()
|
|
2744
2474
|
.ep(commonParams)
|
|
2745
2475
|
.m(function (Command, cs, config, o) {
|
|
2746
|
-
return [
|
|
2747
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2748
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2749
|
-
];
|
|
2476
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2750
2477
|
})
|
|
2751
2478
|
.s("AmazonBedrockAgentCore", "UpdateBrowserStream", {})
|
|
2752
2479
|
.n("BedrockAgentCoreClient", "UpdateBrowserStreamCommand")
|
|
2753
|
-
.
|
|
2754
|
-
.ser(se_UpdateBrowserStreamCommand)
|
|
2755
|
-
.de(de_UpdateBrowserStreamCommand)
|
|
2480
|
+
.sc(UpdateBrowserStream)
|
|
2756
2481
|
.build() {
|
|
2757
2482
|
}
|
|
2758
2483
|
|
|
@@ -2812,88 +2537,53 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2812
2537
|
enumerable: true,
|
|
2813
2538
|
get: function () { return smithyClient.Client; }
|
|
2814
2539
|
});
|
|
2815
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2540
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2816
2541
|
exports.AutomationStreamStatus = AutomationStreamStatus;
|
|
2817
2542
|
exports.BatchCreateMemoryRecordsCommand = BatchCreateMemoryRecordsCommand;
|
|
2818
|
-
exports.BatchCreateMemoryRecordsInputFilterSensitiveLog = BatchCreateMemoryRecordsInputFilterSensitiveLog;
|
|
2819
2543
|
exports.BatchDeleteMemoryRecordsCommand = BatchDeleteMemoryRecordsCommand;
|
|
2820
2544
|
exports.BatchUpdateMemoryRecordsCommand = BatchUpdateMemoryRecordsCommand;
|
|
2821
|
-
exports.BatchUpdateMemoryRecordsInputFilterSensitiveLog = BatchUpdateMemoryRecordsInputFilterSensitiveLog;
|
|
2822
2545
|
exports.BedrockAgentCore = BedrockAgentCore;
|
|
2823
2546
|
exports.BedrockAgentCoreClient = BedrockAgentCoreClient;
|
|
2824
|
-
exports.BedrockAgentCoreServiceException = BedrockAgentCoreServiceException;
|
|
2547
|
+
exports.BedrockAgentCoreServiceException = BedrockAgentCoreServiceException$1;
|
|
2825
2548
|
exports.BrowserSessionStatus = BrowserSessionStatus;
|
|
2826
2549
|
exports.CodeInterpreterSessionStatus = CodeInterpreterSessionStatus;
|
|
2827
|
-
exports.CodeInterpreterStreamOutputFilterSensitiveLog = CodeInterpreterStreamOutputFilterSensitiveLog;
|
|
2828
2550
|
exports.CompleteResourceTokenAuthCommand = CompleteResourceTokenAuthCommand;
|
|
2829
|
-
exports.
|
|
2830
|
-
exports.ConflictException = ConflictException;
|
|
2551
|
+
exports.ConflictException = ConflictException$1;
|
|
2831
2552
|
exports.ContentBlockType = ContentBlockType;
|
|
2832
|
-
exports.ContentFilterSensitiveLog = ContentFilterSensitiveLog;
|
|
2833
|
-
exports.ConversationalFilterSensitiveLog = ConversationalFilterSensitiveLog;
|
|
2834
2553
|
exports.CreateEventCommand = CreateEventCommand;
|
|
2835
|
-
exports.CreateEventInputFilterSensitiveLog = CreateEventInputFilterSensitiveLog;
|
|
2836
|
-
exports.CreateEventOutputFilterSensitiveLog = CreateEventOutputFilterSensitiveLog;
|
|
2837
2554
|
exports.DeleteEventCommand = DeleteEventCommand;
|
|
2838
2555
|
exports.DeleteMemoryRecordCommand = DeleteMemoryRecordCommand;
|
|
2839
|
-
exports.EventFilterSensitiveLog = EventFilterSensitiveLog;
|
|
2840
2556
|
exports.GetAgentCardCommand = GetAgentCardCommand;
|
|
2841
2557
|
exports.GetBrowserSessionCommand = GetBrowserSessionCommand;
|
|
2842
2558
|
exports.GetCodeInterpreterSessionCommand = GetCodeInterpreterSessionCommand;
|
|
2843
2559
|
exports.GetEventCommand = GetEventCommand;
|
|
2844
|
-
exports.GetEventOutputFilterSensitiveLog = GetEventOutputFilterSensitiveLog;
|
|
2845
2560
|
exports.GetMemoryRecordCommand = GetMemoryRecordCommand;
|
|
2846
|
-
exports.GetMemoryRecordOutputFilterSensitiveLog = GetMemoryRecordOutputFilterSensitiveLog;
|
|
2847
2561
|
exports.GetResourceApiKeyCommand = GetResourceApiKeyCommand;
|
|
2848
|
-
exports.GetResourceApiKeyRequestFilterSensitiveLog = GetResourceApiKeyRequestFilterSensitiveLog;
|
|
2849
|
-
exports.GetResourceApiKeyResponseFilterSensitiveLog = GetResourceApiKeyResponseFilterSensitiveLog;
|
|
2850
2562
|
exports.GetResourceOauth2TokenCommand = GetResourceOauth2TokenCommand;
|
|
2851
|
-
exports.GetResourceOauth2TokenRequestFilterSensitiveLog = GetResourceOauth2TokenRequestFilterSensitiveLog;
|
|
2852
|
-
exports.GetResourceOauth2TokenResponseFilterSensitiveLog = GetResourceOauth2TokenResponseFilterSensitiveLog;
|
|
2853
2563
|
exports.GetWorkloadAccessTokenCommand = GetWorkloadAccessTokenCommand;
|
|
2854
2564
|
exports.GetWorkloadAccessTokenForJWTCommand = GetWorkloadAccessTokenForJWTCommand;
|
|
2855
|
-
exports.GetWorkloadAccessTokenForJWTRequestFilterSensitiveLog = GetWorkloadAccessTokenForJWTRequestFilterSensitiveLog;
|
|
2856
|
-
exports.GetWorkloadAccessTokenForJWTResponseFilterSensitiveLog = GetWorkloadAccessTokenForJWTResponseFilterSensitiveLog;
|
|
2857
2565
|
exports.GetWorkloadAccessTokenForUserIdCommand = GetWorkloadAccessTokenForUserIdCommand;
|
|
2858
|
-
exports.
|
|
2859
|
-
exports.
|
|
2860
|
-
exports.InputContentBlockFilterSensitiveLog = InputContentBlockFilterSensitiveLog;
|
|
2861
|
-
exports.InternalServerException = InternalServerException;
|
|
2862
|
-
exports.InvalidInputException = InvalidInputException;
|
|
2566
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2567
|
+
exports.InvalidInputException = InvalidInputException$1;
|
|
2863
2568
|
exports.InvokeAgentRuntimeCommand = InvokeAgentRuntimeCommand;
|
|
2864
|
-
exports.InvokeAgentRuntimeRequestFilterSensitiveLog = InvokeAgentRuntimeRequestFilterSensitiveLog;
|
|
2865
|
-
exports.InvokeAgentRuntimeResponseFilterSensitiveLog = InvokeAgentRuntimeResponseFilterSensitiveLog;
|
|
2866
2569
|
exports.InvokeCodeInterpreterCommand = InvokeCodeInterpreterCommand;
|
|
2867
|
-
exports.InvokeCodeInterpreterRequestFilterSensitiveLog = InvokeCodeInterpreterRequestFilterSensitiveLog;
|
|
2868
|
-
exports.InvokeCodeInterpreterResponseFilterSensitiveLog = InvokeCodeInterpreterResponseFilterSensitiveLog;
|
|
2869
2570
|
exports.ListActorsCommand = ListActorsCommand;
|
|
2870
2571
|
exports.ListBrowserSessionsCommand = ListBrowserSessionsCommand;
|
|
2871
2572
|
exports.ListCodeInterpreterSessionsCommand = ListCodeInterpreterSessionsCommand;
|
|
2872
2573
|
exports.ListEventsCommand = ListEventsCommand;
|
|
2873
|
-
exports.ListEventsOutputFilterSensitiveLog = ListEventsOutputFilterSensitiveLog;
|
|
2874
2574
|
exports.ListMemoryRecordsCommand = ListMemoryRecordsCommand;
|
|
2875
|
-
exports.ListMemoryRecordsOutputFilterSensitiveLog = ListMemoryRecordsOutputFilterSensitiveLog;
|
|
2876
2575
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
2877
|
-
exports.MemoryContentFilterSensitiveLog = MemoryContentFilterSensitiveLog;
|
|
2878
|
-
exports.MemoryRecordCreateInputFilterSensitiveLog = MemoryRecordCreateInputFilterSensitiveLog;
|
|
2879
|
-
exports.MemoryRecordFilterSensitiveLog = MemoryRecordFilterSensitiveLog;
|
|
2880
2576
|
exports.MemoryRecordStatus = MemoryRecordStatus;
|
|
2881
|
-
exports.MemoryRecordSummaryFilterSensitiveLog = MemoryRecordSummaryFilterSensitiveLog;
|
|
2882
|
-
exports.MemoryRecordUpdateInputFilterSensitiveLog = MemoryRecordUpdateInputFilterSensitiveLog;
|
|
2883
2577
|
exports.Oauth2FlowType = Oauth2FlowType;
|
|
2884
2578
|
exports.OperatorType = OperatorType;
|
|
2885
|
-
exports.PayloadTypeFilterSensitiveLog = PayloadTypeFilterSensitiveLog;
|
|
2886
2579
|
exports.ProgrammingLanguage = ProgrammingLanguage;
|
|
2887
2580
|
exports.ResourceContentType = ResourceContentType;
|
|
2888
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2581
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2889
2582
|
exports.RetrieveMemoryRecordsCommand = RetrieveMemoryRecordsCommand;
|
|
2890
|
-
exports.RetrieveMemoryRecordsInputFilterSensitiveLog = RetrieveMemoryRecordsInputFilterSensitiveLog;
|
|
2891
|
-
exports.RetrieveMemoryRecordsOutputFilterSensitiveLog = RetrieveMemoryRecordsOutputFilterSensitiveLog;
|
|
2892
2583
|
exports.Role = Role;
|
|
2893
|
-
exports.RuntimeClientError = RuntimeClientError;
|
|
2894
|
-
exports.
|
|
2895
|
-
exports.
|
|
2896
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2584
|
+
exports.RuntimeClientError = RuntimeClientError$1;
|
|
2585
|
+
exports.ServiceException = ServiceException$1;
|
|
2586
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2897
2587
|
exports.SessionStatus = SessionStatus;
|
|
2898
2588
|
exports.StartBrowserSessionCommand = StartBrowserSessionCommand;
|
|
2899
2589
|
exports.StartCodeInterpreterSessionCommand = StartCodeInterpreterSessionCommand;
|
|
@@ -2901,14 +2591,12 @@ exports.StopBrowserSessionCommand = StopBrowserSessionCommand;
|
|
|
2901
2591
|
exports.StopCodeInterpreterSessionCommand = StopCodeInterpreterSessionCommand;
|
|
2902
2592
|
exports.StopRuntimeSessionCommand = StopRuntimeSessionCommand;
|
|
2903
2593
|
exports.TaskStatus = TaskStatus;
|
|
2904
|
-
exports.ThrottledException = ThrottledException;
|
|
2905
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2906
|
-
exports.ToolArgumentsFilterSensitiveLog = ToolArgumentsFilterSensitiveLog;
|
|
2594
|
+
exports.ThrottledException = ThrottledException$1;
|
|
2595
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
2907
2596
|
exports.ToolName = ToolName;
|
|
2908
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
2597
|
+
exports.UnauthorizedException = UnauthorizedException$1;
|
|
2909
2598
|
exports.UpdateBrowserStreamCommand = UpdateBrowserStreamCommand;
|
|
2910
|
-
exports.
|
|
2911
|
-
exports.ValidationException = ValidationException;
|
|
2599
|
+
exports.ValidationException = ValidationException$1;
|
|
2912
2600
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2913
2601
|
exports.paginateListActors = paginateListActors;
|
|
2914
2602
|
exports.paginateListEvents = paginateListEvents;
|