@aws-sdk/client-s3vectors 3.928.0 → 3.929.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 +640 -998
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/S3VectorsClient.js +2 -0
- package/dist-es/commands/CreateIndexCommand.js +3 -9
- package/dist-es/commands/CreateVectorBucketCommand.js +3 -9
- package/dist-es/commands/DeleteIndexCommand.js +3 -9
- package/dist-es/commands/DeleteVectorBucketCommand.js +3 -9
- package/dist-es/commands/DeleteVectorBucketPolicyCommand.js +3 -9
- package/dist-es/commands/DeleteVectorsCommand.js +3 -9
- package/dist-es/commands/GetIndexCommand.js +3 -9
- package/dist-es/commands/GetVectorBucketCommand.js +3 -9
- package/dist-es/commands/GetVectorBucketPolicyCommand.js +3 -9
- package/dist-es/commands/GetVectorsCommand.js +3 -9
- package/dist-es/commands/ListIndexesCommand.js +3 -9
- package/dist-es/commands/ListVectorBucketsCommand.js +3 -9
- package/dist-es/commands/ListVectorsCommand.js +3 -9
- package/dist-es/commands/PutVectorBucketPolicyCommand.js +3 -9
- package/dist-es/commands/PutVectorsCommand.js +3 -9
- package/dist-es/commands/QueryVectorsCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +572 -0
- package/dist-types/S3VectorsClient.d.ts +10 -1
- 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 +87 -0
- package/dist-types/ts3.4/S3VectorsClient.d.ts +4 -0
- 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 +92 -0
- package/package.json +5 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -848
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -146
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -197
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 middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -89,6 +88,7 @@ class S3VectorsClient extends smithyClient.Client {
|
|
|
89
88
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
90
89
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
91
90
|
this.config = _config_8;
|
|
91
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
92
92
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
93
93
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -108,14 +108,14 @@ class S3VectorsClient extends smithyClient.Client {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
class S3VectorsServiceException extends smithyClient.ServiceException {
|
|
111
|
+
let S3VectorsServiceException$1 = class S3VectorsServiceException extends smithyClient.ServiceException {
|
|
112
112
|
constructor(options) {
|
|
113
113
|
super(options);
|
|
114
114
|
Object.setPrototypeOf(this, S3VectorsServiceException.prototype);
|
|
115
115
|
}
|
|
116
|
-
}
|
|
116
|
+
};
|
|
117
117
|
|
|
118
|
-
class AccessDeniedException extends S3VectorsServiceException {
|
|
118
|
+
let AccessDeniedException$1 = class AccessDeniedException extends S3VectorsServiceException$1 {
|
|
119
119
|
name = "AccessDeniedException";
|
|
120
120
|
$fault = "client";
|
|
121
121
|
constructor(opts) {
|
|
@@ -126,8 +126,8 @@ class AccessDeniedException extends S3VectorsServiceException {
|
|
|
126
126
|
});
|
|
127
127
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
128
|
}
|
|
129
|
-
}
|
|
130
|
-
class ConflictException extends S3VectorsServiceException {
|
|
129
|
+
};
|
|
130
|
+
let ConflictException$1 = class ConflictException extends S3VectorsServiceException$1 {
|
|
131
131
|
name = "ConflictException";
|
|
132
132
|
$fault = "client";
|
|
133
133
|
constructor(opts) {
|
|
@@ -138,7 +138,7 @@ class ConflictException extends S3VectorsServiceException {
|
|
|
138
138
|
});
|
|
139
139
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
140
140
|
}
|
|
141
|
-
}
|
|
141
|
+
};
|
|
142
142
|
const DataType = {
|
|
143
143
|
FLOAT32: "float32",
|
|
144
144
|
};
|
|
@@ -146,7 +146,7 @@ const DistanceMetric = {
|
|
|
146
146
|
COSINE: "cosine",
|
|
147
147
|
EUCLIDEAN: "euclidean",
|
|
148
148
|
};
|
|
149
|
-
class InternalServerException extends S3VectorsServiceException {
|
|
149
|
+
let InternalServerException$1 = class InternalServerException extends S3VectorsServiceException$1 {
|
|
150
150
|
name = "InternalServerException";
|
|
151
151
|
$fault = "server";
|
|
152
152
|
$retryable = {};
|
|
@@ -158,8 +158,8 @@ class InternalServerException extends S3VectorsServiceException {
|
|
|
158
158
|
});
|
|
159
159
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
160
|
}
|
|
161
|
-
}
|
|
162
|
-
class NotFoundException extends S3VectorsServiceException {
|
|
161
|
+
};
|
|
162
|
+
let NotFoundException$1 = class NotFoundException extends S3VectorsServiceException$1 {
|
|
163
163
|
name = "NotFoundException";
|
|
164
164
|
$fault = "client";
|
|
165
165
|
constructor(opts) {
|
|
@@ -170,8 +170,8 @@ class NotFoundException extends S3VectorsServiceException {
|
|
|
170
170
|
});
|
|
171
171
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
172
172
|
}
|
|
173
|
-
}
|
|
174
|
-
class RequestTimeoutException extends S3VectorsServiceException {
|
|
173
|
+
};
|
|
174
|
+
let RequestTimeoutException$1 = class RequestTimeoutException extends S3VectorsServiceException$1 {
|
|
175
175
|
name = "RequestTimeoutException";
|
|
176
176
|
$fault = "client";
|
|
177
177
|
$retryable = {};
|
|
@@ -183,8 +183,8 @@ class RequestTimeoutException extends S3VectorsServiceException {
|
|
|
183
183
|
});
|
|
184
184
|
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
185
185
|
}
|
|
186
|
-
}
|
|
187
|
-
class ServiceQuotaExceededException extends S3VectorsServiceException {
|
|
186
|
+
};
|
|
187
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends S3VectorsServiceException$1 {
|
|
188
188
|
name = "ServiceQuotaExceededException";
|
|
189
189
|
$fault = "client";
|
|
190
190
|
constructor(opts) {
|
|
@@ -195,8 +195,8 @@ class ServiceQuotaExceededException extends S3VectorsServiceException {
|
|
|
195
195
|
});
|
|
196
196
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
197
197
|
}
|
|
198
|
-
}
|
|
199
|
-
class ServiceUnavailableException extends S3VectorsServiceException {
|
|
198
|
+
};
|
|
199
|
+
let ServiceUnavailableException$1 = class ServiceUnavailableException extends S3VectorsServiceException$1 {
|
|
200
200
|
name = "ServiceUnavailableException";
|
|
201
201
|
$fault = "server";
|
|
202
202
|
$retryable = {};
|
|
@@ -208,8 +208,8 @@ class ServiceUnavailableException extends S3VectorsServiceException {
|
|
|
208
208
|
});
|
|
209
209
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
210
210
|
}
|
|
211
|
-
}
|
|
212
|
-
class TooManyRequestsException extends S3VectorsServiceException {
|
|
211
|
+
};
|
|
212
|
+
let TooManyRequestsException$1 = class TooManyRequestsException extends S3VectorsServiceException$1 {
|
|
213
213
|
name = "TooManyRequestsException";
|
|
214
214
|
$fault = "client";
|
|
215
215
|
$retryable = {
|
|
@@ -223,8 +223,8 @@ class TooManyRequestsException extends S3VectorsServiceException {
|
|
|
223
223
|
});
|
|
224
224
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
225
225
|
}
|
|
226
|
-
}
|
|
227
|
-
class ValidationException extends S3VectorsServiceException {
|
|
226
|
+
};
|
|
227
|
+
let ValidationException$1 = class ValidationException extends S3VectorsServiceException$1 {
|
|
228
228
|
name = "ValidationException";
|
|
229
229
|
$fault = "client";
|
|
230
230
|
fieldList;
|
|
@@ -237,12 +237,12 @@ class ValidationException extends S3VectorsServiceException {
|
|
|
237
237
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
238
238
|
this.fieldList = opts.fieldList;
|
|
239
239
|
}
|
|
240
|
-
}
|
|
240
|
+
};
|
|
241
241
|
const SseType = {
|
|
242
242
|
AES256: "AES256",
|
|
243
243
|
AWS_KMS: "aws:kms",
|
|
244
244
|
};
|
|
245
|
-
class KmsDisabledException extends S3VectorsServiceException {
|
|
245
|
+
let KmsDisabledException$1 = class KmsDisabledException extends S3VectorsServiceException$1 {
|
|
246
246
|
name = "KmsDisabledException";
|
|
247
247
|
$fault = "client";
|
|
248
248
|
constructor(opts) {
|
|
@@ -253,8 +253,8 @@ class KmsDisabledException extends S3VectorsServiceException {
|
|
|
253
253
|
});
|
|
254
254
|
Object.setPrototypeOf(this, KmsDisabledException.prototype);
|
|
255
255
|
}
|
|
256
|
-
}
|
|
257
|
-
class KmsInvalidKeyUsageException extends S3VectorsServiceException {
|
|
256
|
+
};
|
|
257
|
+
let KmsInvalidKeyUsageException$1 = class KmsInvalidKeyUsageException extends S3VectorsServiceException$1 {
|
|
258
258
|
name = "KmsInvalidKeyUsageException";
|
|
259
259
|
$fault = "client";
|
|
260
260
|
constructor(opts) {
|
|
@@ -265,8 +265,8 @@ class KmsInvalidKeyUsageException extends S3VectorsServiceException {
|
|
|
265
265
|
});
|
|
266
266
|
Object.setPrototypeOf(this, KmsInvalidKeyUsageException.prototype);
|
|
267
267
|
}
|
|
268
|
-
}
|
|
269
|
-
class KmsInvalidStateException extends S3VectorsServiceException {
|
|
268
|
+
};
|
|
269
|
+
let KmsInvalidStateException$1 = class KmsInvalidStateException extends S3VectorsServiceException$1 {
|
|
270
270
|
name = "KmsInvalidStateException";
|
|
271
271
|
$fault = "client";
|
|
272
272
|
constructor(opts) {
|
|
@@ -277,8 +277,8 @@ class KmsInvalidStateException extends S3VectorsServiceException {
|
|
|
277
277
|
});
|
|
278
278
|
Object.setPrototypeOf(this, KmsInvalidStateException.prototype);
|
|
279
279
|
}
|
|
280
|
-
}
|
|
281
|
-
class KmsNotFoundException extends S3VectorsServiceException {
|
|
280
|
+
};
|
|
281
|
+
let KmsNotFoundException$1 = class KmsNotFoundException extends S3VectorsServiceException$1 {
|
|
282
282
|
name = "KmsNotFoundException";
|
|
283
283
|
$fault = "client";
|
|
284
284
|
constructor(opts) {
|
|
@@ -289,7 +289,7 @@ class KmsNotFoundException extends S3VectorsServiceException {
|
|
|
289
289
|
});
|
|
290
290
|
Object.setPrototypeOf(this, KmsNotFoundException.prototype);
|
|
291
291
|
}
|
|
292
|
-
}
|
|
292
|
+
};
|
|
293
293
|
exports.VectorData = void 0;
|
|
294
294
|
(function (VectorData) {
|
|
295
295
|
VectorData.visit = (value, visitor) => {
|
|
@@ -299,863 +299,580 @@ exports.VectorData = void 0;
|
|
|
299
299
|
};
|
|
300
300
|
})(exports.VectorData || (exports.VectorData = {}));
|
|
301
301
|
|
|
302
|
-
const
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
const
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
const
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
const
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
const
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
const
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
const
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
const
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
const
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
867
|
-
...contents,
|
|
868
|
-
});
|
|
869
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
870
|
-
};
|
|
871
|
-
const de_KmsInvalidKeyUsageExceptionRes = async (parsedOutput, context) => {
|
|
872
|
-
const contents = smithyClient.map({});
|
|
873
|
-
const data = parsedOutput.body;
|
|
874
|
-
const doc = smithyClient.take(data, {
|
|
875
|
-
message: smithyClient.expectString,
|
|
876
|
-
});
|
|
877
|
-
Object.assign(contents, doc);
|
|
878
|
-
const exception = new KmsInvalidKeyUsageException({
|
|
879
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
880
|
-
...contents,
|
|
881
|
-
});
|
|
882
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
883
|
-
};
|
|
884
|
-
const de_KmsInvalidStateExceptionRes = async (parsedOutput, context) => {
|
|
885
|
-
const contents = smithyClient.map({});
|
|
886
|
-
const data = parsedOutput.body;
|
|
887
|
-
const doc = smithyClient.take(data, {
|
|
888
|
-
message: smithyClient.expectString,
|
|
889
|
-
});
|
|
890
|
-
Object.assign(contents, doc);
|
|
891
|
-
const exception = new KmsInvalidStateException({
|
|
892
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
893
|
-
...contents,
|
|
894
|
-
});
|
|
895
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
896
|
-
};
|
|
897
|
-
const de_KmsNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
898
|
-
const contents = smithyClient.map({});
|
|
899
|
-
const data = parsedOutput.body;
|
|
900
|
-
const doc = smithyClient.take(data, {
|
|
901
|
-
message: smithyClient.expectString,
|
|
902
|
-
});
|
|
903
|
-
Object.assign(contents, doc);
|
|
904
|
-
const exception = new KmsNotFoundException({
|
|
905
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
906
|
-
...contents,
|
|
907
|
-
});
|
|
908
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
909
|
-
};
|
|
910
|
-
const de_NotFoundExceptionRes = async (parsedOutput, context) => {
|
|
911
|
-
const contents = smithyClient.map({});
|
|
912
|
-
const data = parsedOutput.body;
|
|
913
|
-
const doc = smithyClient.take(data, {
|
|
914
|
-
message: smithyClient.expectString,
|
|
915
|
-
});
|
|
916
|
-
Object.assign(contents, doc);
|
|
917
|
-
const exception = new NotFoundException({
|
|
918
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
919
|
-
...contents,
|
|
920
|
-
});
|
|
921
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
922
|
-
};
|
|
923
|
-
const de_RequestTimeoutExceptionRes = async (parsedOutput, context) => {
|
|
924
|
-
const contents = smithyClient.map({});
|
|
925
|
-
const data = parsedOutput.body;
|
|
926
|
-
const doc = smithyClient.take(data, {
|
|
927
|
-
message: smithyClient.expectString,
|
|
928
|
-
});
|
|
929
|
-
Object.assign(contents, doc);
|
|
930
|
-
const exception = new RequestTimeoutException({
|
|
931
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
932
|
-
...contents,
|
|
933
|
-
});
|
|
934
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
935
|
-
};
|
|
936
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
937
|
-
const contents = smithyClient.map({});
|
|
938
|
-
const data = parsedOutput.body;
|
|
939
|
-
const doc = smithyClient.take(data, {
|
|
940
|
-
message: smithyClient.expectString,
|
|
941
|
-
});
|
|
942
|
-
Object.assign(contents, doc);
|
|
943
|
-
const exception = new ServiceQuotaExceededException({
|
|
944
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
945
|
-
...contents,
|
|
946
|
-
});
|
|
947
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
948
|
-
};
|
|
949
|
-
const de_ServiceUnavailableExceptionRes = async (parsedOutput, context) => {
|
|
950
|
-
const contents = smithyClient.map({});
|
|
951
|
-
const data = parsedOutput.body;
|
|
952
|
-
const doc = smithyClient.take(data, {
|
|
953
|
-
message: smithyClient.expectString,
|
|
954
|
-
});
|
|
955
|
-
Object.assign(contents, doc);
|
|
956
|
-
const exception = new ServiceUnavailableException({
|
|
957
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
958
|
-
...contents,
|
|
959
|
-
});
|
|
960
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
961
|
-
};
|
|
962
|
-
const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
|
|
963
|
-
const contents = smithyClient.map({});
|
|
964
|
-
const data = parsedOutput.body;
|
|
965
|
-
const doc = smithyClient.take(data, {
|
|
966
|
-
message: smithyClient.expectString,
|
|
967
|
-
});
|
|
968
|
-
Object.assign(contents, doc);
|
|
969
|
-
const exception = new TooManyRequestsException({
|
|
970
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
971
|
-
...contents,
|
|
972
|
-
});
|
|
973
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
974
|
-
};
|
|
975
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
976
|
-
const contents = smithyClient.map({});
|
|
977
|
-
const data = parsedOutput.body;
|
|
978
|
-
const doc = smithyClient.take(data, {
|
|
979
|
-
fieldList: smithyClient._json,
|
|
980
|
-
message: smithyClient.expectString,
|
|
981
|
-
});
|
|
982
|
-
Object.assign(contents, doc);
|
|
983
|
-
const exception = new ValidationException({
|
|
984
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
985
|
-
...contents,
|
|
986
|
-
});
|
|
987
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
988
|
-
};
|
|
989
|
-
const se_Float32VectorData = (input, context) => {
|
|
990
|
-
return input
|
|
991
|
-
.filter((e) => e != null)
|
|
992
|
-
.map((entry) => {
|
|
993
|
-
return smithyClient.serializeFloat(entry);
|
|
994
|
-
});
|
|
995
|
-
};
|
|
996
|
-
const se_PutInputVector = (input, context) => {
|
|
997
|
-
return smithyClient.take(input, {
|
|
998
|
-
data: (_) => se_VectorData(_),
|
|
999
|
-
key: [],
|
|
1000
|
-
metadata: (_) => se_VectorMetadata(_),
|
|
1001
|
-
});
|
|
1002
|
-
};
|
|
1003
|
-
const se_PutVectorsInputList = (input, context) => {
|
|
1004
|
-
return input
|
|
1005
|
-
.filter((e) => e != null)
|
|
1006
|
-
.map((entry) => {
|
|
1007
|
-
return se_PutInputVector(entry);
|
|
1008
|
-
});
|
|
1009
|
-
};
|
|
1010
|
-
const se_VectorData = (input, context) => {
|
|
1011
|
-
return exports.VectorData.visit(input, {
|
|
1012
|
-
float32: (value) => ({ float32: se_Float32VectorData(value) }),
|
|
1013
|
-
_: (name, value) => ({ [name]: value }),
|
|
1014
|
-
});
|
|
1015
|
-
};
|
|
1016
|
-
const se_VectorMetadata = (input, context) => {
|
|
1017
|
-
return input;
|
|
1018
|
-
};
|
|
1019
|
-
const se_Document = (input, context) => {
|
|
1020
|
-
return input;
|
|
1021
|
-
};
|
|
1022
|
-
const de_Float32VectorData = (output, context) => {
|
|
1023
|
-
const retVal = (output || [])
|
|
1024
|
-
.filter((e) => e != null)
|
|
1025
|
-
.map((entry) => {
|
|
1026
|
-
return smithyClient.limitedParseFloat32(entry);
|
|
1027
|
-
});
|
|
1028
|
-
return retVal;
|
|
1029
|
-
};
|
|
1030
|
-
const de_GetOutputVector = (output, context) => {
|
|
1031
|
-
return smithyClient.take(output, {
|
|
1032
|
-
data: (_) => de_VectorData(core$1.awsExpectUnion(_)),
|
|
1033
|
-
key: smithyClient.expectString,
|
|
1034
|
-
metadata: (_) => de_VectorMetadata(_),
|
|
1035
|
-
});
|
|
1036
|
-
};
|
|
1037
|
-
const de_GetVectorsOutputList = (output, context) => {
|
|
1038
|
-
const retVal = (output || [])
|
|
1039
|
-
.filter((e) => e != null)
|
|
1040
|
-
.map((entry) => {
|
|
1041
|
-
return de_GetOutputVector(entry);
|
|
1042
|
-
});
|
|
1043
|
-
return retVal;
|
|
1044
|
-
};
|
|
1045
|
-
const de_Index = (output, context) => {
|
|
1046
|
-
return smithyClient.take(output, {
|
|
1047
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1048
|
-
dataType: smithyClient.expectString,
|
|
1049
|
-
dimension: smithyClient.expectInt32,
|
|
1050
|
-
distanceMetric: smithyClient.expectString,
|
|
1051
|
-
indexArn: smithyClient.expectString,
|
|
1052
|
-
indexName: smithyClient.expectString,
|
|
1053
|
-
metadataConfiguration: smithyClient._json,
|
|
1054
|
-
vectorBucketName: smithyClient.expectString,
|
|
1055
|
-
});
|
|
1056
|
-
};
|
|
1057
|
-
const de_IndexSummary = (output, context) => {
|
|
1058
|
-
return smithyClient.take(output, {
|
|
1059
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1060
|
-
indexArn: smithyClient.expectString,
|
|
1061
|
-
indexName: smithyClient.expectString,
|
|
1062
|
-
vectorBucketName: smithyClient.expectString,
|
|
1063
|
-
});
|
|
1064
|
-
};
|
|
1065
|
-
const de_ListIndexesOutputList = (output, context) => {
|
|
1066
|
-
const retVal = (output || [])
|
|
1067
|
-
.filter((e) => e != null)
|
|
1068
|
-
.map((entry) => {
|
|
1069
|
-
return de_IndexSummary(entry);
|
|
1070
|
-
});
|
|
1071
|
-
return retVal;
|
|
1072
|
-
};
|
|
1073
|
-
const de_ListOutputVector = (output, context) => {
|
|
1074
|
-
return smithyClient.take(output, {
|
|
1075
|
-
data: (_) => de_VectorData(core$1.awsExpectUnion(_)),
|
|
1076
|
-
key: smithyClient.expectString,
|
|
1077
|
-
metadata: (_) => de_VectorMetadata(_),
|
|
1078
|
-
});
|
|
1079
|
-
};
|
|
1080
|
-
const de_ListVectorBucketsOutputList = (output, context) => {
|
|
1081
|
-
const retVal = (output || [])
|
|
1082
|
-
.filter((e) => e != null)
|
|
1083
|
-
.map((entry) => {
|
|
1084
|
-
return de_VectorBucketSummary(entry);
|
|
1085
|
-
});
|
|
1086
|
-
return retVal;
|
|
1087
|
-
};
|
|
1088
|
-
const de_ListVectorsOutputList = (output, context) => {
|
|
1089
|
-
const retVal = (output || [])
|
|
1090
|
-
.filter((e) => e != null)
|
|
1091
|
-
.map((entry) => {
|
|
1092
|
-
return de_ListOutputVector(entry);
|
|
1093
|
-
});
|
|
1094
|
-
return retVal;
|
|
1095
|
-
};
|
|
1096
|
-
const de_QueryOutputVector = (output, context) => {
|
|
1097
|
-
return smithyClient.take(output, {
|
|
1098
|
-
data: (_) => de_VectorData(core$1.awsExpectUnion(_)),
|
|
1099
|
-
distance: smithyClient.limitedParseFloat32,
|
|
1100
|
-
key: smithyClient.expectString,
|
|
1101
|
-
metadata: (_) => de_VectorMetadata(_),
|
|
1102
|
-
});
|
|
1103
|
-
};
|
|
1104
|
-
const de_QueryVectorsOutputList = (output, context) => {
|
|
1105
|
-
const retVal = (output || [])
|
|
1106
|
-
.filter((e) => e != null)
|
|
1107
|
-
.map((entry) => {
|
|
1108
|
-
return de_QueryOutputVector(entry);
|
|
1109
|
-
});
|
|
1110
|
-
return retVal;
|
|
1111
|
-
};
|
|
1112
|
-
const de_VectorBucket = (output, context) => {
|
|
1113
|
-
return smithyClient.take(output, {
|
|
1114
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1115
|
-
encryptionConfiguration: smithyClient._json,
|
|
1116
|
-
vectorBucketArn: smithyClient.expectString,
|
|
1117
|
-
vectorBucketName: smithyClient.expectString,
|
|
1118
|
-
});
|
|
1119
|
-
};
|
|
1120
|
-
const de_VectorBucketSummary = (output, context) => {
|
|
1121
|
-
return smithyClient.take(output, {
|
|
1122
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1123
|
-
vectorBucketArn: smithyClient.expectString,
|
|
1124
|
-
vectorBucketName: smithyClient.expectString,
|
|
1125
|
-
});
|
|
1126
|
-
};
|
|
1127
|
-
const de_VectorData = (output, context) => {
|
|
1128
|
-
if (output.float32 != null) {
|
|
1129
|
-
return {
|
|
1130
|
-
float32: de_Float32VectorData(output.float32),
|
|
1131
|
-
};
|
|
1132
|
-
}
|
|
1133
|
-
return { $unknown: Object.entries(output)[0] };
|
|
1134
|
-
};
|
|
1135
|
-
const de_VectorMetadata = (output, context) => {
|
|
1136
|
-
return output;
|
|
1137
|
-
};
|
|
1138
|
-
const deserializeMetadata = (output) => ({
|
|
1139
|
-
httpStatusCode: output.statusCode,
|
|
1140
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1141
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1142
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1143
|
-
});
|
|
302
|
+
const _ADE = "AccessDeniedException";
|
|
303
|
+
const _CE = "ConflictException";
|
|
304
|
+
const _CI = "CreateIndex";
|
|
305
|
+
const _CII = "CreateIndexInput";
|
|
306
|
+
const _CIO = "CreateIndexOutput";
|
|
307
|
+
const _CVB = "CreateVectorBucket";
|
|
308
|
+
const _CVBI = "CreateVectorBucketInput";
|
|
309
|
+
const _CVBO = "CreateVectorBucketOutput";
|
|
310
|
+
const _DI = "DeleteIndex";
|
|
311
|
+
const _DII = "DeleteIndexInput";
|
|
312
|
+
const _DIO = "DeleteIndexOutput";
|
|
313
|
+
const _DV = "DeleteVectors";
|
|
314
|
+
const _DVB = "DeleteVectorBucket";
|
|
315
|
+
const _DVBI = "DeleteVectorBucketInput";
|
|
316
|
+
const _DVBO = "DeleteVectorBucketOutput";
|
|
317
|
+
const _DVBP = "DeleteVectorBucketPolicy";
|
|
318
|
+
const _DVBPI = "DeleteVectorBucketPolicyInput";
|
|
319
|
+
const _DVBPO = "DeleteVectorBucketPolicyOutput";
|
|
320
|
+
const _DVI = "DeleteVectorsInput";
|
|
321
|
+
const _DVO = "DeleteVectorsOutput";
|
|
322
|
+
const _EC = "EncryptionConfiguration";
|
|
323
|
+
const _GI = "GetIndex";
|
|
324
|
+
const _GII = "GetIndexInput";
|
|
325
|
+
const _GIO = "GetIndexOutput";
|
|
326
|
+
const _GOV = "GetOutputVector";
|
|
327
|
+
const _GV = "GetVectors";
|
|
328
|
+
const _GVB = "GetVectorBucket";
|
|
329
|
+
const _GVBI = "GetVectorBucketInput";
|
|
330
|
+
const _GVBO = "GetVectorBucketOutput";
|
|
331
|
+
const _GVBP = "GetVectorBucketPolicy";
|
|
332
|
+
const _GVBPI = "GetVectorBucketPolicyInput";
|
|
333
|
+
const _GVBPO = "GetVectorBucketPolicyOutput";
|
|
334
|
+
const _GVI = "GetVectorsInput";
|
|
335
|
+
const _GVO = "GetVectorsOutput";
|
|
336
|
+
const _GVOL = "GetVectorsOutputList";
|
|
337
|
+
const _I = "Index";
|
|
338
|
+
const _IS = "IndexSummary";
|
|
339
|
+
const _ISE = "InternalServerException";
|
|
340
|
+
const _KDE = "KmsDisabledException";
|
|
341
|
+
const _KIKUE = "KmsInvalidKeyUsageException";
|
|
342
|
+
const _KISE = "KmsInvalidStateException";
|
|
343
|
+
const _KNFE = "KmsNotFoundException";
|
|
344
|
+
const _LI = "ListIndexes";
|
|
345
|
+
const _LII = "ListIndexesInput";
|
|
346
|
+
const _LIO = "ListIndexesOutput";
|
|
347
|
+
const _LIOL = "ListIndexesOutputList";
|
|
348
|
+
const _LOV = "ListOutputVector";
|
|
349
|
+
const _LV = "ListVectors";
|
|
350
|
+
const _LVB = "ListVectorBuckets";
|
|
351
|
+
const _LVBI = "ListVectorBucketsInput";
|
|
352
|
+
const _LVBO = "ListVectorBucketsOutput";
|
|
353
|
+
const _LVBOL = "ListVectorBucketsOutputList";
|
|
354
|
+
const _LVI = "ListVectorsInput";
|
|
355
|
+
const _LVO = "ListVectorsOutput";
|
|
356
|
+
const _LVOL = "ListVectorsOutputList";
|
|
357
|
+
const _MC = "MetadataConfiguration";
|
|
358
|
+
const _NFE = "NotFoundException";
|
|
359
|
+
const _PIV = "PutInputVector";
|
|
360
|
+
const _PV = "PutVectors";
|
|
361
|
+
const _PVBP = "PutVectorBucketPolicy";
|
|
362
|
+
const _PVBPI = "PutVectorBucketPolicyInput";
|
|
363
|
+
const _PVBPO = "PutVectorBucketPolicyOutput";
|
|
364
|
+
const _PVI = "PutVectorsInput";
|
|
365
|
+
const _PVIL = "PutVectorsInputList";
|
|
366
|
+
const _PVO = "PutVectorsOutput";
|
|
367
|
+
const _QOV = "QueryOutputVector";
|
|
368
|
+
const _QV = "QueryVectors";
|
|
369
|
+
const _QVI = "QueryVectorsInput";
|
|
370
|
+
const _QVO = "QueryVectorsOutput";
|
|
371
|
+
const _QVOL = "QueryVectorsOutputList";
|
|
372
|
+
const _RTE = "RequestTimeoutException";
|
|
373
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
374
|
+
const _SUE = "ServiceUnavailableException";
|
|
375
|
+
const _TMRE = "TooManyRequestsException";
|
|
376
|
+
const _VB = "VectorBucket";
|
|
377
|
+
const _VBS = "VectorBucketSummary";
|
|
378
|
+
const _VD = "VectorData";
|
|
379
|
+
const _VE = "ValidationException";
|
|
380
|
+
const _VEF = "ValidationExceptionField";
|
|
381
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
382
|
+
const _c = "client";
|
|
383
|
+
const _cT = "creationTime";
|
|
384
|
+
const _d = "dimension";
|
|
385
|
+
const _dM = "distanceMetric";
|
|
386
|
+
const _dT = "dataType";
|
|
387
|
+
const _da = "data";
|
|
388
|
+
const _di = "distance";
|
|
389
|
+
const _e = "error";
|
|
390
|
+
const _eC = "encryptionConfiguration";
|
|
391
|
+
const _f = "filter";
|
|
392
|
+
const _fL = "fieldList";
|
|
393
|
+
const _fl = "float32";
|
|
394
|
+
const _h = "http";
|
|
395
|
+
const _hE = "httpError";
|
|
396
|
+
const _i = "index";
|
|
397
|
+
const _iA = "indexArn";
|
|
398
|
+
const _iN = "indexName";
|
|
399
|
+
const _in = "indexes";
|
|
400
|
+
const _k = "keys";
|
|
401
|
+
const _kKA = "kmsKeyArn";
|
|
402
|
+
const _ke = "key";
|
|
403
|
+
const _m = "message";
|
|
404
|
+
const _mC = "metadataConfiguration";
|
|
405
|
+
const _mR = "maxResults";
|
|
406
|
+
const _me = "metadata";
|
|
407
|
+
const _nFMK = "nonFilterableMetadataKeys";
|
|
408
|
+
const _nT = "nextToken";
|
|
409
|
+
const _p = "policy";
|
|
410
|
+
const _pa = "path";
|
|
411
|
+
const _pr = "prefix";
|
|
412
|
+
const _qV = "queryVector";
|
|
413
|
+
const _rD = "returnData";
|
|
414
|
+
const _rDe = "returnDistance";
|
|
415
|
+
const _rM = "returnMetadata";
|
|
416
|
+
const _s = "server";
|
|
417
|
+
const _sC = "segmentCount";
|
|
418
|
+
const _sI = "segmentIndex";
|
|
419
|
+
const _sT = "sseType";
|
|
420
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.s3vectors";
|
|
421
|
+
const _tK = "topK";
|
|
422
|
+
const _v = "vectors";
|
|
423
|
+
const _vB = "vectorBucket";
|
|
424
|
+
const _vBA = "vectorBucketArn";
|
|
425
|
+
const _vBN = "vectorBucketName";
|
|
426
|
+
const _vBe = "vectorBuckets";
|
|
427
|
+
const n0 = "com.amazonaws.s3vectors";
|
|
428
|
+
var AccessDeniedException = [
|
|
429
|
+
-3,
|
|
430
|
+
n0,
|
|
431
|
+
_ADE,
|
|
432
|
+
{
|
|
433
|
+
[_e]: _c,
|
|
434
|
+
[_hE]: 403,
|
|
435
|
+
},
|
|
436
|
+
[_m],
|
|
437
|
+
[0],
|
|
438
|
+
];
|
|
439
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
440
|
+
var ConflictException = [
|
|
441
|
+
-3,
|
|
442
|
+
n0,
|
|
443
|
+
_CE,
|
|
444
|
+
{
|
|
445
|
+
[_e]: _c,
|
|
446
|
+
[_hE]: 409,
|
|
447
|
+
},
|
|
448
|
+
[_m],
|
|
449
|
+
[0],
|
|
450
|
+
];
|
|
451
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
452
|
+
var CreateIndexInput = [
|
|
453
|
+
3,
|
|
454
|
+
n0,
|
|
455
|
+
_CII,
|
|
456
|
+
0,
|
|
457
|
+
[_vBN, _vBA, _iN, _dT, _d, _dM, _mC],
|
|
458
|
+
[0, 0, 0, 0, 1, 0, () => MetadataConfiguration],
|
|
459
|
+
];
|
|
460
|
+
var CreateIndexOutput = [3, n0, _CIO, 0, [_iA], [0]];
|
|
461
|
+
var CreateVectorBucketInput = [
|
|
462
|
+
3,
|
|
463
|
+
n0,
|
|
464
|
+
_CVBI,
|
|
465
|
+
0,
|
|
466
|
+
[_vBN, _eC],
|
|
467
|
+
[0, () => EncryptionConfiguration],
|
|
468
|
+
];
|
|
469
|
+
var CreateVectorBucketOutput = [3, n0, _CVBO, 0, [_vBA], [0]];
|
|
470
|
+
var DeleteIndexInput = [3, n0, _DII, 0, [_vBN, _iN, _iA], [0, 0, 0]];
|
|
471
|
+
var DeleteIndexOutput = [3, n0, _DIO, 0, [], []];
|
|
472
|
+
var DeleteVectorBucketInput = [3, n0, _DVBI, 0, [_vBN, _vBA], [0, 0]];
|
|
473
|
+
var DeleteVectorBucketOutput = [3, n0, _DVBO, 0, [], []];
|
|
474
|
+
var DeleteVectorBucketPolicyInput = [3, n0, _DVBPI, 0, [_vBN, _vBA], [0, 0]];
|
|
475
|
+
var DeleteVectorBucketPolicyOutput = [3, n0, _DVBPO, 0, [], []];
|
|
476
|
+
var DeleteVectorsInput = [3, n0, _DVI, 0, [_vBN, _iN, _iA, _k], [0, 0, 0, 64 | 0]];
|
|
477
|
+
var DeleteVectorsOutput = [3, n0, _DVO, 0, [], []];
|
|
478
|
+
var EncryptionConfiguration = [3, n0, _EC, 0, [_sT, _kKA], [0, 0]];
|
|
479
|
+
var GetIndexInput = [3, n0, _GII, 0, [_vBN, _iN, _iA], [0, 0, 0]];
|
|
480
|
+
var GetIndexOutput = [3, n0, _GIO, 0, [_i], [() => Index]];
|
|
481
|
+
var GetOutputVector = [3, n0, _GOV, 0, [_ke, _da, _me], [0, () => VectorData, 15]];
|
|
482
|
+
var GetVectorBucketInput = [3, n0, _GVBI, 0, [_vBN, _vBA], [0, 0]];
|
|
483
|
+
var GetVectorBucketOutput = [3, n0, _GVBO, 0, [_vB], [() => VectorBucket]];
|
|
484
|
+
var GetVectorBucketPolicyInput = [3, n0, _GVBPI, 0, [_vBN, _vBA], [0, 0]];
|
|
485
|
+
var GetVectorBucketPolicyOutput = [3, n0, _GVBPO, 0, [_p], [0]];
|
|
486
|
+
var GetVectorsInput = [
|
|
487
|
+
3,
|
|
488
|
+
n0,
|
|
489
|
+
_GVI,
|
|
490
|
+
0,
|
|
491
|
+
[_vBN, _iN, _iA, _k, _rD, _rM],
|
|
492
|
+
[0, 0, 0, 64 | 0, 2, 2],
|
|
493
|
+
];
|
|
494
|
+
var GetVectorsOutput = [3, n0, _GVO, 0, [_v], [() => GetVectorsOutputList]];
|
|
495
|
+
var Index = [
|
|
496
|
+
3,
|
|
497
|
+
n0,
|
|
498
|
+
_I,
|
|
499
|
+
0,
|
|
500
|
+
[_vBN, _iN, _iA, _cT, _dT, _d, _dM, _mC],
|
|
501
|
+
[0, 0, 0, 4, 0, 1, 0, () => MetadataConfiguration],
|
|
502
|
+
];
|
|
503
|
+
var IndexSummary = [3, n0, _IS, 0, [_vBN, _iN, _iA, _cT], [0, 0, 0, 4]];
|
|
504
|
+
var InternalServerException = [
|
|
505
|
+
-3,
|
|
506
|
+
n0,
|
|
507
|
+
_ISE,
|
|
508
|
+
{
|
|
509
|
+
[_e]: _s,
|
|
510
|
+
[_hE]: 500,
|
|
511
|
+
},
|
|
512
|
+
[_m],
|
|
513
|
+
[0],
|
|
514
|
+
];
|
|
515
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
516
|
+
var KmsDisabledException = [
|
|
517
|
+
-3,
|
|
518
|
+
n0,
|
|
519
|
+
_KDE,
|
|
520
|
+
{
|
|
521
|
+
[_e]: _c,
|
|
522
|
+
[_hE]: 400,
|
|
523
|
+
},
|
|
524
|
+
[_m],
|
|
525
|
+
[0],
|
|
526
|
+
];
|
|
527
|
+
schema.TypeRegistry.for(n0).registerError(KmsDisabledException, KmsDisabledException$1);
|
|
528
|
+
var KmsInvalidKeyUsageException = [
|
|
529
|
+
-3,
|
|
530
|
+
n0,
|
|
531
|
+
_KIKUE,
|
|
532
|
+
{
|
|
533
|
+
[_e]: _c,
|
|
534
|
+
[_hE]: 400,
|
|
535
|
+
},
|
|
536
|
+
[_m],
|
|
537
|
+
[0],
|
|
538
|
+
];
|
|
539
|
+
schema.TypeRegistry.for(n0).registerError(KmsInvalidKeyUsageException, KmsInvalidKeyUsageException$1);
|
|
540
|
+
var KmsInvalidStateException = [
|
|
541
|
+
-3,
|
|
542
|
+
n0,
|
|
543
|
+
_KISE,
|
|
544
|
+
{
|
|
545
|
+
[_e]: _c,
|
|
546
|
+
[_hE]: 400,
|
|
547
|
+
},
|
|
548
|
+
[_m],
|
|
549
|
+
[0],
|
|
550
|
+
];
|
|
551
|
+
schema.TypeRegistry.for(n0).registerError(KmsInvalidStateException, KmsInvalidStateException$1);
|
|
552
|
+
var KmsNotFoundException = [
|
|
553
|
+
-3,
|
|
554
|
+
n0,
|
|
555
|
+
_KNFE,
|
|
556
|
+
{
|
|
557
|
+
[_e]: _c,
|
|
558
|
+
[_hE]: 400,
|
|
559
|
+
},
|
|
560
|
+
[_m],
|
|
561
|
+
[0],
|
|
562
|
+
];
|
|
563
|
+
schema.TypeRegistry.for(n0).registerError(KmsNotFoundException, KmsNotFoundException$1);
|
|
564
|
+
var ListIndexesInput = [3, n0, _LII, 0, [_vBN, _vBA, _mR, _nT, _pr], [0, 0, 1, 0, 0]];
|
|
565
|
+
var ListIndexesOutput = [3, n0, _LIO, 0, [_nT, _in], [0, () => ListIndexesOutputList]];
|
|
566
|
+
var ListOutputVector = [3, n0, _LOV, 0, [_ke, _da, _me], [0, () => VectorData, 15]];
|
|
567
|
+
var ListVectorBucketsInput = [3, n0, _LVBI, 0, [_mR, _nT, _pr], [1, 0, 0]];
|
|
568
|
+
var ListVectorBucketsOutput = [
|
|
569
|
+
3,
|
|
570
|
+
n0,
|
|
571
|
+
_LVBO,
|
|
572
|
+
0,
|
|
573
|
+
[_nT, _vBe],
|
|
574
|
+
[0, () => ListVectorBucketsOutputList],
|
|
575
|
+
];
|
|
576
|
+
var ListVectorsInput = [
|
|
577
|
+
3,
|
|
578
|
+
n0,
|
|
579
|
+
_LVI,
|
|
580
|
+
0,
|
|
581
|
+
[_vBN, _iN, _iA, _mR, _nT, _sC, _sI, _rD, _rM],
|
|
582
|
+
[0, 0, 0, 1, 0, 1, 1, 2, 2],
|
|
583
|
+
];
|
|
584
|
+
var ListVectorsOutput = [3, n0, _LVO, 0, [_nT, _v], [0, () => ListVectorsOutputList]];
|
|
585
|
+
var MetadataConfiguration = [3, n0, _MC, 0, [_nFMK], [64 | 0]];
|
|
586
|
+
var NotFoundException = [
|
|
587
|
+
-3,
|
|
588
|
+
n0,
|
|
589
|
+
_NFE,
|
|
590
|
+
{
|
|
591
|
+
[_e]: _c,
|
|
592
|
+
[_hE]: 404,
|
|
593
|
+
},
|
|
594
|
+
[_m],
|
|
595
|
+
[0],
|
|
596
|
+
];
|
|
597
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
|
|
598
|
+
var PutInputVector = [3, n0, _PIV, 0, [_ke, _da, _me], [0, () => VectorData, 15]];
|
|
599
|
+
var PutVectorBucketPolicyInput = [3, n0, _PVBPI, 0, [_vBN, _vBA, _p], [0, 0, 0]];
|
|
600
|
+
var PutVectorBucketPolicyOutput = [3, n0, _PVBPO, 0, [], []];
|
|
601
|
+
var PutVectorsInput = [
|
|
602
|
+
3,
|
|
603
|
+
n0,
|
|
604
|
+
_PVI,
|
|
605
|
+
0,
|
|
606
|
+
[_vBN, _iN, _iA, _v],
|
|
607
|
+
[0, 0, 0, () => PutVectorsInputList],
|
|
608
|
+
];
|
|
609
|
+
var PutVectorsOutput = [3, n0, _PVO, 0, [], []];
|
|
610
|
+
var QueryOutputVector = [
|
|
611
|
+
3,
|
|
612
|
+
n0,
|
|
613
|
+
_QOV,
|
|
614
|
+
0,
|
|
615
|
+
[_ke, _da, _me, _di],
|
|
616
|
+
[0, () => VectorData, 15, 1],
|
|
617
|
+
];
|
|
618
|
+
var QueryVectorsInput = [
|
|
619
|
+
3,
|
|
620
|
+
n0,
|
|
621
|
+
_QVI,
|
|
622
|
+
0,
|
|
623
|
+
[_vBN, _iN, _iA, _tK, _qV, _f, _rM, _rDe],
|
|
624
|
+
[0, 0, 0, 1, () => VectorData, 15, 2, 2],
|
|
625
|
+
];
|
|
626
|
+
var QueryVectorsOutput = [3, n0, _QVO, 0, [_v, _dM], [() => QueryVectorsOutputList, 0]];
|
|
627
|
+
var RequestTimeoutException = [
|
|
628
|
+
-3,
|
|
629
|
+
n0,
|
|
630
|
+
_RTE,
|
|
631
|
+
{
|
|
632
|
+
[_e]: _c,
|
|
633
|
+
[_hE]: 408,
|
|
634
|
+
},
|
|
635
|
+
[_m],
|
|
636
|
+
[0],
|
|
637
|
+
];
|
|
638
|
+
schema.TypeRegistry.for(n0).registerError(RequestTimeoutException, RequestTimeoutException$1);
|
|
639
|
+
var ServiceQuotaExceededException = [
|
|
640
|
+
-3,
|
|
641
|
+
n0,
|
|
642
|
+
_SQEE,
|
|
643
|
+
{
|
|
644
|
+
[_e]: _c,
|
|
645
|
+
[_hE]: 402,
|
|
646
|
+
},
|
|
647
|
+
[_m],
|
|
648
|
+
[0],
|
|
649
|
+
];
|
|
650
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
651
|
+
var ServiceUnavailableException = [
|
|
652
|
+
-3,
|
|
653
|
+
n0,
|
|
654
|
+
_SUE,
|
|
655
|
+
{
|
|
656
|
+
[_e]: _s,
|
|
657
|
+
[_hE]: 503,
|
|
658
|
+
},
|
|
659
|
+
[_m],
|
|
660
|
+
[0],
|
|
661
|
+
];
|
|
662
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
|
|
663
|
+
var TooManyRequestsException = [
|
|
664
|
+
-3,
|
|
665
|
+
n0,
|
|
666
|
+
_TMRE,
|
|
667
|
+
{
|
|
668
|
+
[_e]: _c,
|
|
669
|
+
[_hE]: 429,
|
|
670
|
+
},
|
|
671
|
+
[_m],
|
|
672
|
+
[0],
|
|
673
|
+
];
|
|
674
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
|
|
675
|
+
var ValidationException = [
|
|
676
|
+
-3,
|
|
677
|
+
n0,
|
|
678
|
+
_VE,
|
|
679
|
+
{
|
|
680
|
+
[_e]: _c,
|
|
681
|
+
},
|
|
682
|
+
[_m, _fL],
|
|
683
|
+
[0, () => ValidationExceptionFieldList],
|
|
684
|
+
];
|
|
685
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
686
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_pa, _m], [0, 0]];
|
|
687
|
+
var VectorBucket = [
|
|
688
|
+
3,
|
|
689
|
+
n0,
|
|
690
|
+
_VB,
|
|
691
|
+
0,
|
|
692
|
+
[_vBN, _vBA, _cT, _eC],
|
|
693
|
+
[0, 0, 4, () => EncryptionConfiguration],
|
|
694
|
+
];
|
|
695
|
+
var VectorBucketSummary = [3, n0, _VBS, 0, [_vBN, _vBA, _cT], [0, 0, 4]];
|
|
696
|
+
var S3VectorsServiceException = [-3, _sm, "S3VectorsServiceException", 0, [], []];
|
|
697
|
+
schema.TypeRegistry.for(_sm).registerError(S3VectorsServiceException, S3VectorsServiceException$1);
|
|
698
|
+
var GetVectorsOutputList = [1, n0, _GVOL, 0, () => GetOutputVector];
|
|
699
|
+
var ListIndexesOutputList = [1, n0, _LIOL, 0, () => IndexSummary];
|
|
700
|
+
var ListVectorBucketsOutputList = [1, n0, _LVBOL, 0, () => VectorBucketSummary];
|
|
701
|
+
var ListVectorsOutputList = [1, n0, _LVOL, 0, () => ListOutputVector];
|
|
702
|
+
var PutVectorsInputList = [1, n0, _PVIL, 0, () => PutInputVector];
|
|
703
|
+
var QueryVectorsOutputList = [1, n0, _QVOL, 0, () => QueryOutputVector];
|
|
704
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
705
|
+
var VectorData = [3, n0, _VD, 0, [_fl], [64 | 1]];
|
|
706
|
+
var CreateIndex = [
|
|
707
|
+
9,
|
|
708
|
+
n0,
|
|
709
|
+
_CI,
|
|
710
|
+
{
|
|
711
|
+
[_h]: ["POST", "/CreateIndex", 200],
|
|
712
|
+
},
|
|
713
|
+
() => CreateIndexInput,
|
|
714
|
+
() => CreateIndexOutput,
|
|
715
|
+
];
|
|
716
|
+
var CreateVectorBucket = [
|
|
717
|
+
9,
|
|
718
|
+
n0,
|
|
719
|
+
_CVB,
|
|
720
|
+
{
|
|
721
|
+
[_h]: ["POST", "/CreateVectorBucket", 200],
|
|
722
|
+
},
|
|
723
|
+
() => CreateVectorBucketInput,
|
|
724
|
+
() => CreateVectorBucketOutput,
|
|
725
|
+
];
|
|
726
|
+
var DeleteIndex = [
|
|
727
|
+
9,
|
|
728
|
+
n0,
|
|
729
|
+
_DI,
|
|
730
|
+
{
|
|
731
|
+
[_h]: ["POST", "/DeleteIndex", 200],
|
|
732
|
+
},
|
|
733
|
+
() => DeleteIndexInput,
|
|
734
|
+
() => DeleteIndexOutput,
|
|
735
|
+
];
|
|
736
|
+
var DeleteVectorBucket = [
|
|
737
|
+
9,
|
|
738
|
+
n0,
|
|
739
|
+
_DVB,
|
|
740
|
+
{
|
|
741
|
+
[_h]: ["POST", "/DeleteVectorBucket", 200],
|
|
742
|
+
},
|
|
743
|
+
() => DeleteVectorBucketInput,
|
|
744
|
+
() => DeleteVectorBucketOutput,
|
|
745
|
+
];
|
|
746
|
+
var DeleteVectorBucketPolicy = [
|
|
747
|
+
9,
|
|
748
|
+
n0,
|
|
749
|
+
_DVBP,
|
|
750
|
+
{
|
|
751
|
+
[_h]: ["POST", "/DeleteVectorBucketPolicy", 200],
|
|
752
|
+
},
|
|
753
|
+
() => DeleteVectorBucketPolicyInput,
|
|
754
|
+
() => DeleteVectorBucketPolicyOutput,
|
|
755
|
+
];
|
|
756
|
+
var DeleteVectors = [
|
|
757
|
+
9,
|
|
758
|
+
n0,
|
|
759
|
+
_DV,
|
|
760
|
+
{
|
|
761
|
+
[_h]: ["POST", "/DeleteVectors", 200],
|
|
762
|
+
},
|
|
763
|
+
() => DeleteVectorsInput,
|
|
764
|
+
() => DeleteVectorsOutput,
|
|
765
|
+
];
|
|
766
|
+
var GetIndex = [
|
|
767
|
+
9,
|
|
768
|
+
n0,
|
|
769
|
+
_GI,
|
|
770
|
+
{
|
|
771
|
+
[_h]: ["POST", "/GetIndex", 200],
|
|
772
|
+
},
|
|
773
|
+
() => GetIndexInput,
|
|
774
|
+
() => GetIndexOutput,
|
|
775
|
+
];
|
|
776
|
+
var GetVectorBucket = [
|
|
777
|
+
9,
|
|
778
|
+
n0,
|
|
779
|
+
_GVB,
|
|
780
|
+
{
|
|
781
|
+
[_h]: ["POST", "/GetVectorBucket", 200],
|
|
782
|
+
},
|
|
783
|
+
() => GetVectorBucketInput,
|
|
784
|
+
() => GetVectorBucketOutput,
|
|
785
|
+
];
|
|
786
|
+
var GetVectorBucketPolicy = [
|
|
787
|
+
9,
|
|
788
|
+
n0,
|
|
789
|
+
_GVBP,
|
|
790
|
+
{
|
|
791
|
+
[_h]: ["POST", "/GetVectorBucketPolicy", 200],
|
|
792
|
+
},
|
|
793
|
+
() => GetVectorBucketPolicyInput,
|
|
794
|
+
() => GetVectorBucketPolicyOutput,
|
|
795
|
+
];
|
|
796
|
+
var GetVectors = [
|
|
797
|
+
9,
|
|
798
|
+
n0,
|
|
799
|
+
_GV,
|
|
800
|
+
{
|
|
801
|
+
[_h]: ["POST", "/GetVectors", 200],
|
|
802
|
+
},
|
|
803
|
+
() => GetVectorsInput,
|
|
804
|
+
() => GetVectorsOutput,
|
|
805
|
+
];
|
|
806
|
+
var ListIndexes = [
|
|
807
|
+
9,
|
|
808
|
+
n0,
|
|
809
|
+
_LI,
|
|
810
|
+
{
|
|
811
|
+
[_h]: ["POST", "/ListIndexes", 200],
|
|
812
|
+
},
|
|
813
|
+
() => ListIndexesInput,
|
|
814
|
+
() => ListIndexesOutput,
|
|
815
|
+
];
|
|
816
|
+
var ListVectorBuckets = [
|
|
817
|
+
9,
|
|
818
|
+
n0,
|
|
819
|
+
_LVB,
|
|
820
|
+
{
|
|
821
|
+
[_h]: ["POST", "/ListVectorBuckets", 200],
|
|
822
|
+
},
|
|
823
|
+
() => ListVectorBucketsInput,
|
|
824
|
+
() => ListVectorBucketsOutput,
|
|
825
|
+
];
|
|
826
|
+
var ListVectors = [
|
|
827
|
+
9,
|
|
828
|
+
n0,
|
|
829
|
+
_LV,
|
|
830
|
+
{
|
|
831
|
+
[_h]: ["POST", "/ListVectors", 200],
|
|
832
|
+
},
|
|
833
|
+
() => ListVectorsInput,
|
|
834
|
+
() => ListVectorsOutput,
|
|
835
|
+
];
|
|
836
|
+
var PutVectorBucketPolicy = [
|
|
837
|
+
9,
|
|
838
|
+
n0,
|
|
839
|
+
_PVBP,
|
|
840
|
+
{
|
|
841
|
+
[_h]: ["POST", "/PutVectorBucketPolicy", 200],
|
|
842
|
+
},
|
|
843
|
+
() => PutVectorBucketPolicyInput,
|
|
844
|
+
() => PutVectorBucketPolicyOutput,
|
|
845
|
+
];
|
|
846
|
+
var PutVectors = [
|
|
847
|
+
9,
|
|
848
|
+
n0,
|
|
849
|
+
_PV,
|
|
850
|
+
{
|
|
851
|
+
[_h]: ["POST", "/PutVectors", 200],
|
|
852
|
+
},
|
|
853
|
+
() => PutVectorsInput,
|
|
854
|
+
() => PutVectorsOutput,
|
|
855
|
+
];
|
|
856
|
+
var QueryVectors = [
|
|
857
|
+
9,
|
|
858
|
+
n0,
|
|
859
|
+
_QV,
|
|
860
|
+
{
|
|
861
|
+
[_h]: ["POST", "/QueryVectors", 200],
|
|
862
|
+
},
|
|
863
|
+
() => QueryVectorsInput,
|
|
864
|
+
() => QueryVectorsOutput,
|
|
865
|
+
];
|
|
1144
866
|
|
|
1145
867
|
class CreateIndexCommand extends smithyClient.Command
|
|
1146
868
|
.classBuilder()
|
|
1147
869
|
.ep(commonParams)
|
|
1148
870
|
.m(function (Command, cs, config, o) {
|
|
1149
|
-
return [
|
|
1150
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1151
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1152
|
-
];
|
|
871
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1153
872
|
})
|
|
1154
873
|
.s("S3Vectors", "CreateIndex", {})
|
|
1155
874
|
.n("S3VectorsClient", "CreateIndexCommand")
|
|
1156
|
-
.
|
|
1157
|
-
.ser(se_CreateIndexCommand)
|
|
1158
|
-
.de(de_CreateIndexCommand)
|
|
875
|
+
.sc(CreateIndex)
|
|
1159
876
|
.build() {
|
|
1160
877
|
}
|
|
1161
878
|
|
|
@@ -1163,16 +880,11 @@ class CreateVectorBucketCommand extends smithyClient.Command
|
|
|
1163
880
|
.classBuilder()
|
|
1164
881
|
.ep(commonParams)
|
|
1165
882
|
.m(function (Command, cs, config, o) {
|
|
1166
|
-
return [
|
|
1167
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1168
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1169
|
-
];
|
|
883
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1170
884
|
})
|
|
1171
885
|
.s("S3Vectors", "CreateVectorBucket", {})
|
|
1172
886
|
.n("S3VectorsClient", "CreateVectorBucketCommand")
|
|
1173
|
-
.
|
|
1174
|
-
.ser(se_CreateVectorBucketCommand)
|
|
1175
|
-
.de(de_CreateVectorBucketCommand)
|
|
887
|
+
.sc(CreateVectorBucket)
|
|
1176
888
|
.build() {
|
|
1177
889
|
}
|
|
1178
890
|
|
|
@@ -1180,16 +892,11 @@ class DeleteIndexCommand extends smithyClient.Command
|
|
|
1180
892
|
.classBuilder()
|
|
1181
893
|
.ep(commonParams)
|
|
1182
894
|
.m(function (Command, cs, config, o) {
|
|
1183
|
-
return [
|
|
1184
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1185
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1186
|
-
];
|
|
895
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1187
896
|
})
|
|
1188
897
|
.s("S3Vectors", "DeleteIndex", {})
|
|
1189
898
|
.n("S3VectorsClient", "DeleteIndexCommand")
|
|
1190
|
-
.
|
|
1191
|
-
.ser(se_DeleteIndexCommand)
|
|
1192
|
-
.de(de_DeleteIndexCommand)
|
|
899
|
+
.sc(DeleteIndex)
|
|
1193
900
|
.build() {
|
|
1194
901
|
}
|
|
1195
902
|
|
|
@@ -1197,16 +904,11 @@ class DeleteVectorBucketCommand extends smithyClient.Command
|
|
|
1197
904
|
.classBuilder()
|
|
1198
905
|
.ep(commonParams)
|
|
1199
906
|
.m(function (Command, cs, config, o) {
|
|
1200
|
-
return [
|
|
1201
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1202
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1203
|
-
];
|
|
907
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1204
908
|
})
|
|
1205
909
|
.s("S3Vectors", "DeleteVectorBucket", {})
|
|
1206
910
|
.n("S3VectorsClient", "DeleteVectorBucketCommand")
|
|
1207
|
-
.
|
|
1208
|
-
.ser(se_DeleteVectorBucketCommand)
|
|
1209
|
-
.de(de_DeleteVectorBucketCommand)
|
|
911
|
+
.sc(DeleteVectorBucket)
|
|
1210
912
|
.build() {
|
|
1211
913
|
}
|
|
1212
914
|
|
|
@@ -1214,16 +916,11 @@ class DeleteVectorBucketPolicyCommand extends smithyClient.Command
|
|
|
1214
916
|
.classBuilder()
|
|
1215
917
|
.ep(commonParams)
|
|
1216
918
|
.m(function (Command, cs, config, o) {
|
|
1217
|
-
return [
|
|
1218
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1219
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1220
|
-
];
|
|
919
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1221
920
|
})
|
|
1222
921
|
.s("S3Vectors", "DeleteVectorBucketPolicy", {})
|
|
1223
922
|
.n("S3VectorsClient", "DeleteVectorBucketPolicyCommand")
|
|
1224
|
-
.
|
|
1225
|
-
.ser(se_DeleteVectorBucketPolicyCommand)
|
|
1226
|
-
.de(de_DeleteVectorBucketPolicyCommand)
|
|
923
|
+
.sc(DeleteVectorBucketPolicy)
|
|
1227
924
|
.build() {
|
|
1228
925
|
}
|
|
1229
926
|
|
|
@@ -1231,16 +928,11 @@ class DeleteVectorsCommand extends smithyClient.Command
|
|
|
1231
928
|
.classBuilder()
|
|
1232
929
|
.ep(commonParams)
|
|
1233
930
|
.m(function (Command, cs, config, o) {
|
|
1234
|
-
return [
|
|
1235
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1236
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1237
|
-
];
|
|
931
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1238
932
|
})
|
|
1239
933
|
.s("S3Vectors", "DeleteVectors", {})
|
|
1240
934
|
.n("S3VectorsClient", "DeleteVectorsCommand")
|
|
1241
|
-
.
|
|
1242
|
-
.ser(se_DeleteVectorsCommand)
|
|
1243
|
-
.de(de_DeleteVectorsCommand)
|
|
935
|
+
.sc(DeleteVectors)
|
|
1244
936
|
.build() {
|
|
1245
937
|
}
|
|
1246
938
|
|
|
@@ -1248,16 +940,11 @@ class GetIndexCommand extends smithyClient.Command
|
|
|
1248
940
|
.classBuilder()
|
|
1249
941
|
.ep(commonParams)
|
|
1250
942
|
.m(function (Command, cs, config, o) {
|
|
1251
|
-
return [
|
|
1252
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1253
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1254
|
-
];
|
|
943
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1255
944
|
})
|
|
1256
945
|
.s("S3Vectors", "GetIndex", {})
|
|
1257
946
|
.n("S3VectorsClient", "GetIndexCommand")
|
|
1258
|
-
.
|
|
1259
|
-
.ser(se_GetIndexCommand)
|
|
1260
|
-
.de(de_GetIndexCommand)
|
|
947
|
+
.sc(GetIndex)
|
|
1261
948
|
.build() {
|
|
1262
949
|
}
|
|
1263
950
|
|
|
@@ -1265,16 +952,11 @@ class GetVectorBucketCommand extends smithyClient.Command
|
|
|
1265
952
|
.classBuilder()
|
|
1266
953
|
.ep(commonParams)
|
|
1267
954
|
.m(function (Command, cs, config, o) {
|
|
1268
|
-
return [
|
|
1269
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1270
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1271
|
-
];
|
|
955
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1272
956
|
})
|
|
1273
957
|
.s("S3Vectors", "GetVectorBucket", {})
|
|
1274
958
|
.n("S3VectorsClient", "GetVectorBucketCommand")
|
|
1275
|
-
.
|
|
1276
|
-
.ser(se_GetVectorBucketCommand)
|
|
1277
|
-
.de(de_GetVectorBucketCommand)
|
|
959
|
+
.sc(GetVectorBucket)
|
|
1278
960
|
.build() {
|
|
1279
961
|
}
|
|
1280
962
|
|
|
@@ -1282,16 +964,11 @@ class GetVectorBucketPolicyCommand extends smithyClient.Command
|
|
|
1282
964
|
.classBuilder()
|
|
1283
965
|
.ep(commonParams)
|
|
1284
966
|
.m(function (Command, cs, config, o) {
|
|
1285
|
-
return [
|
|
1286
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1287
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1288
|
-
];
|
|
967
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1289
968
|
})
|
|
1290
969
|
.s("S3Vectors", "GetVectorBucketPolicy", {})
|
|
1291
970
|
.n("S3VectorsClient", "GetVectorBucketPolicyCommand")
|
|
1292
|
-
.
|
|
1293
|
-
.ser(se_GetVectorBucketPolicyCommand)
|
|
1294
|
-
.de(de_GetVectorBucketPolicyCommand)
|
|
971
|
+
.sc(GetVectorBucketPolicy)
|
|
1295
972
|
.build() {
|
|
1296
973
|
}
|
|
1297
974
|
|
|
@@ -1299,16 +976,11 @@ class GetVectorsCommand extends smithyClient.Command
|
|
|
1299
976
|
.classBuilder()
|
|
1300
977
|
.ep(commonParams)
|
|
1301
978
|
.m(function (Command, cs, config, o) {
|
|
1302
|
-
return [
|
|
1303
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1304
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1305
|
-
];
|
|
979
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1306
980
|
})
|
|
1307
981
|
.s("S3Vectors", "GetVectors", {})
|
|
1308
982
|
.n("S3VectorsClient", "GetVectorsCommand")
|
|
1309
|
-
.
|
|
1310
|
-
.ser(se_GetVectorsCommand)
|
|
1311
|
-
.de(de_GetVectorsCommand)
|
|
983
|
+
.sc(GetVectors)
|
|
1312
984
|
.build() {
|
|
1313
985
|
}
|
|
1314
986
|
|
|
@@ -1316,16 +988,11 @@ class ListIndexesCommand extends smithyClient.Command
|
|
|
1316
988
|
.classBuilder()
|
|
1317
989
|
.ep(commonParams)
|
|
1318
990
|
.m(function (Command, cs, config, o) {
|
|
1319
|
-
return [
|
|
1320
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1321
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1322
|
-
];
|
|
991
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1323
992
|
})
|
|
1324
993
|
.s("S3Vectors", "ListIndexes", {})
|
|
1325
994
|
.n("S3VectorsClient", "ListIndexesCommand")
|
|
1326
|
-
.
|
|
1327
|
-
.ser(se_ListIndexesCommand)
|
|
1328
|
-
.de(de_ListIndexesCommand)
|
|
995
|
+
.sc(ListIndexes)
|
|
1329
996
|
.build() {
|
|
1330
997
|
}
|
|
1331
998
|
|
|
@@ -1333,16 +1000,11 @@ class ListVectorBucketsCommand extends smithyClient.Command
|
|
|
1333
1000
|
.classBuilder()
|
|
1334
1001
|
.ep(commonParams)
|
|
1335
1002
|
.m(function (Command, cs, config, o) {
|
|
1336
|
-
return [
|
|
1337
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1338
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1339
|
-
];
|
|
1003
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1340
1004
|
})
|
|
1341
1005
|
.s("S3Vectors", "ListVectorBuckets", {})
|
|
1342
1006
|
.n("S3VectorsClient", "ListVectorBucketsCommand")
|
|
1343
|
-
.
|
|
1344
|
-
.ser(se_ListVectorBucketsCommand)
|
|
1345
|
-
.de(de_ListVectorBucketsCommand)
|
|
1007
|
+
.sc(ListVectorBuckets)
|
|
1346
1008
|
.build() {
|
|
1347
1009
|
}
|
|
1348
1010
|
|
|
@@ -1350,16 +1012,11 @@ class ListVectorsCommand extends smithyClient.Command
|
|
|
1350
1012
|
.classBuilder()
|
|
1351
1013
|
.ep(commonParams)
|
|
1352
1014
|
.m(function (Command, cs, config, o) {
|
|
1353
|
-
return [
|
|
1354
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1355
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1356
|
-
];
|
|
1015
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1357
1016
|
})
|
|
1358
1017
|
.s("S3Vectors", "ListVectors", {})
|
|
1359
1018
|
.n("S3VectorsClient", "ListVectorsCommand")
|
|
1360
|
-
.
|
|
1361
|
-
.ser(se_ListVectorsCommand)
|
|
1362
|
-
.de(de_ListVectorsCommand)
|
|
1019
|
+
.sc(ListVectors)
|
|
1363
1020
|
.build() {
|
|
1364
1021
|
}
|
|
1365
1022
|
|
|
@@ -1367,16 +1024,11 @@ class PutVectorBucketPolicyCommand extends smithyClient.Command
|
|
|
1367
1024
|
.classBuilder()
|
|
1368
1025
|
.ep(commonParams)
|
|
1369
1026
|
.m(function (Command, cs, config, o) {
|
|
1370
|
-
return [
|
|
1371
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1372
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1373
|
-
];
|
|
1027
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1374
1028
|
})
|
|
1375
1029
|
.s("S3Vectors", "PutVectorBucketPolicy", {})
|
|
1376
1030
|
.n("S3VectorsClient", "PutVectorBucketPolicyCommand")
|
|
1377
|
-
.
|
|
1378
|
-
.ser(se_PutVectorBucketPolicyCommand)
|
|
1379
|
-
.de(de_PutVectorBucketPolicyCommand)
|
|
1031
|
+
.sc(PutVectorBucketPolicy)
|
|
1380
1032
|
.build() {
|
|
1381
1033
|
}
|
|
1382
1034
|
|
|
@@ -1384,16 +1036,11 @@ class PutVectorsCommand extends smithyClient.Command
|
|
|
1384
1036
|
.classBuilder()
|
|
1385
1037
|
.ep(commonParams)
|
|
1386
1038
|
.m(function (Command, cs, config, o) {
|
|
1387
|
-
return [
|
|
1388
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1389
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1390
|
-
];
|
|
1039
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1391
1040
|
})
|
|
1392
1041
|
.s("S3Vectors", "PutVectors", {})
|
|
1393
1042
|
.n("S3VectorsClient", "PutVectorsCommand")
|
|
1394
|
-
.
|
|
1395
|
-
.ser(se_PutVectorsCommand)
|
|
1396
|
-
.de(de_PutVectorsCommand)
|
|
1043
|
+
.sc(PutVectors)
|
|
1397
1044
|
.build() {
|
|
1398
1045
|
}
|
|
1399
1046
|
|
|
@@ -1401,16 +1048,11 @@ class QueryVectorsCommand extends smithyClient.Command
|
|
|
1401
1048
|
.classBuilder()
|
|
1402
1049
|
.ep(commonParams)
|
|
1403
1050
|
.m(function (Command, cs, config, o) {
|
|
1404
|
-
return [
|
|
1405
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1406
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1407
|
-
];
|
|
1051
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1408
1052
|
})
|
|
1409
1053
|
.s("S3Vectors", "QueryVectors", {})
|
|
1410
1054
|
.n("S3VectorsClient", "QueryVectorsCommand")
|
|
1411
|
-
.
|
|
1412
|
-
.ser(se_QueryVectorsCommand)
|
|
1413
|
-
.de(de_QueryVectorsCommand)
|
|
1055
|
+
.sc(QueryVectors)
|
|
1414
1056
|
.build() {
|
|
1415
1057
|
}
|
|
1416
1058
|
|
|
@@ -1450,8 +1092,8 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1450
1092
|
enumerable: true,
|
|
1451
1093
|
get: function () { return smithyClient.Client; }
|
|
1452
1094
|
});
|
|
1453
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1454
|
-
exports.ConflictException = ConflictException;
|
|
1095
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1096
|
+
exports.ConflictException = ConflictException$1;
|
|
1455
1097
|
exports.CreateIndexCommand = CreateIndexCommand;
|
|
1456
1098
|
exports.CreateVectorBucketCommand = CreateVectorBucketCommand;
|
|
1457
1099
|
exports.DataType = DataType;
|
|
@@ -1464,27 +1106,27 @@ exports.GetIndexCommand = GetIndexCommand;
|
|
|
1464
1106
|
exports.GetVectorBucketCommand = GetVectorBucketCommand;
|
|
1465
1107
|
exports.GetVectorBucketPolicyCommand = GetVectorBucketPolicyCommand;
|
|
1466
1108
|
exports.GetVectorsCommand = GetVectorsCommand;
|
|
1467
|
-
exports.InternalServerException = InternalServerException;
|
|
1468
|
-
exports.KmsDisabledException = KmsDisabledException;
|
|
1469
|
-
exports.KmsInvalidKeyUsageException = KmsInvalidKeyUsageException;
|
|
1470
|
-
exports.KmsInvalidStateException = KmsInvalidStateException;
|
|
1471
|
-
exports.KmsNotFoundException = KmsNotFoundException;
|
|
1109
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1110
|
+
exports.KmsDisabledException = KmsDisabledException$1;
|
|
1111
|
+
exports.KmsInvalidKeyUsageException = KmsInvalidKeyUsageException$1;
|
|
1112
|
+
exports.KmsInvalidStateException = KmsInvalidStateException$1;
|
|
1113
|
+
exports.KmsNotFoundException = KmsNotFoundException$1;
|
|
1472
1114
|
exports.ListIndexesCommand = ListIndexesCommand;
|
|
1473
1115
|
exports.ListVectorBucketsCommand = ListVectorBucketsCommand;
|
|
1474
1116
|
exports.ListVectorsCommand = ListVectorsCommand;
|
|
1475
|
-
exports.NotFoundException = NotFoundException;
|
|
1117
|
+
exports.NotFoundException = NotFoundException$1;
|
|
1476
1118
|
exports.PutVectorBucketPolicyCommand = PutVectorBucketPolicyCommand;
|
|
1477
1119
|
exports.PutVectorsCommand = PutVectorsCommand;
|
|
1478
1120
|
exports.QueryVectorsCommand = QueryVectorsCommand;
|
|
1479
|
-
exports.RequestTimeoutException = RequestTimeoutException;
|
|
1121
|
+
exports.RequestTimeoutException = RequestTimeoutException$1;
|
|
1480
1122
|
exports.S3Vectors = S3Vectors;
|
|
1481
1123
|
exports.S3VectorsClient = S3VectorsClient;
|
|
1482
|
-
exports.S3VectorsServiceException = S3VectorsServiceException;
|
|
1483
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1484
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1124
|
+
exports.S3VectorsServiceException = S3VectorsServiceException$1;
|
|
1125
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1126
|
+
exports.ServiceUnavailableException = ServiceUnavailableException$1;
|
|
1485
1127
|
exports.SseType = SseType;
|
|
1486
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1487
|
-
exports.ValidationException = ValidationException;
|
|
1128
|
+
exports.TooManyRequestsException = TooManyRequestsException$1;
|
|
1129
|
+
exports.ValidationException = ValidationException$1;
|
|
1488
1130
|
exports.paginateListIndexes = paginateListIndexes;
|
|
1489
1131
|
exports.paginateListVectorBuckets = paginateListVectorBuckets;
|
|
1490
1132
|
exports.paginateListVectors = paginateListVectors;
|