@aws-sdk/client-s3vectors 3.845.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/LICENSE +201 -0
- package/README.md +333 -0
- package/dist-cjs/S3Vectors.js +43 -0
- package/dist-cjs/S3VectorsClient.js +52 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateIndexCommand.js +26 -0
- package/dist-cjs/commands/CreateVectorBucketCommand.js +26 -0
- package/dist-cjs/commands/DeleteIndexCommand.js +26 -0
- package/dist-cjs/commands/DeleteVectorBucketCommand.js +26 -0
- package/dist-cjs/commands/DeleteVectorBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/DeleteVectorsCommand.js +26 -0
- package/dist-cjs/commands/GetIndexCommand.js +26 -0
- package/dist-cjs/commands/GetVectorBucketCommand.js +26 -0
- package/dist-cjs/commands/GetVectorBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/GetVectorsCommand.js +26 -0
- package/dist-cjs/commands/ListIndexesCommand.js +26 -0
- package/dist-cjs/commands/ListVectorBucketsCommand.js +26 -0
- package/dist-cjs/commands/ListVectorsCommand.js +26 -0
- package/dist-cjs/commands/PutVectorBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/PutVectorsCommand.js +26 -0
- package/dist-cjs/commands/QueryVectorsCommand.js +26 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +15 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/S3VectorsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +186 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListIndexesPaginator.js +7 -0
- package/dist-cjs/pagination/ListVectorBucketsPaginator.js +7 -0
- package/dist-cjs/pagination/ListVectorsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +858 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +13 -0
- package/dist-es/S3Vectors.js +39 -0
- package/dist-es/S3VectorsClient.js +48 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateIndexCommand.js +22 -0
- package/dist-es/commands/CreateVectorBucketCommand.js +22 -0
- package/dist-es/commands/DeleteIndexCommand.js +22 -0
- package/dist-es/commands/DeleteVectorBucketCommand.js +22 -0
- package/dist-es/commands/DeleteVectorBucketPolicyCommand.js +22 -0
- package/dist-es/commands/DeleteVectorsCommand.js +22 -0
- package/dist-es/commands/GetIndexCommand.js +22 -0
- package/dist-es/commands/GetVectorBucketCommand.js +22 -0
- package/dist-es/commands/GetVectorBucketPolicyCommand.js +22 -0
- package/dist-es/commands/GetVectorsCommand.js +22 -0
- package/dist-es/commands/ListIndexesCommand.js +22 -0
- package/dist-es/commands/ListVectorBucketsCommand.js +22 -0
- package/dist-es/commands/ListVectorsCommand.js +22 -0
- package/dist-es/commands/PutVectorBucketPolicyCommand.js +22 -0
- package/dist-es/commands/PutVectorsCommand.js +22 -0
- package/dist-es/commands/QueryVectorsCommand.js +22 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/S3VectorsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +171 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListIndexesPaginator.js +4 -0
- package/dist-es/pagination/ListVectorBucketsPaginator.js +4 -0
- package/dist-es/pagination/ListVectorsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +823 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-types/S3Vectors.d.ts +131 -0
- package/dist-types/S3VectorsClient.d.ts +203 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +104 -0
- package/dist-types/commands/CreateVectorBucketCommand.d.ts +95 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +90 -0
- package/dist-types/commands/DeleteVectorBucketCommand.d.ts +92 -0
- package/dist-types/commands/DeleteVectorBucketPolicyCommand.d.ts +92 -0
- package/dist-types/commands/DeleteVectorsCommand.d.ts +108 -0
- package/dist-types/commands/GetIndexCommand.d.ts +108 -0
- package/dist-types/commands/GetVectorBucketCommand.d.ts +102 -0
- package/dist-types/commands/GetVectorBucketPolicyCommand.d.ts +94 -0
- package/dist-types/commands/GetVectorsCommand.d.ts +122 -0
- package/dist-types/commands/ListIndexesCommand.d.ts +105 -0
- package/dist-types/commands/ListVectorBucketsCommand.d.ts +99 -0
- package/dist-types/commands/ListVectorsCommand.d.ts +112 -0
- package/dist-types/commands/PutVectorBucketPolicyCommand.d.ts +93 -0
- package/dist-types/commands/PutVectorsCommand.d.ts +116 -0
- package/dist-types/commands/QueryVectorsCommand.d.ts +127 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +14 -0
- package/dist-types/models/S3VectorsServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1013 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListIndexesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListVectorBucketsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListVectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +50 -0
- package/dist-types/runtimeConfig.d.ts +50 -0
- package/dist-types/runtimeConfig.native.d.ts +49 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/S3Vectors.d.ts +286 -0
- package/dist-types/ts3.4/S3VectorsClient.d.ts +215 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateVectorBucketCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteIndexCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteVectorBucketCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteVectorBucketPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteVectorsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetIndexCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetVectorBucketCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetVectorBucketPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetVectorsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListIndexesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListVectorBucketsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListVectorsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutVectorBucketPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutVectorsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/QueryVectorsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/S3VectorsServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +311 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListIndexesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVectorBucketsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +99 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
3
|
+
import { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListIndexes: (config: S3VectorsPaginationConfiguration, input: ListIndexesCommandInput, ...rest: any[]) => Paginator<ListIndexesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput } from "../commands/ListVectorBucketsCommand";
|
|
3
|
+
import { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListVectorBuckets: (config: S3VectorsPaginationConfiguration, input: ListVectorBucketsCommandInput, ...rest: any[]) => Paginator<ListVectorBucketsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListVectorsCommandInput, ListVectorsCommandOutput } from "../commands/ListVectorsCommand";
|
|
3
|
+
import { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListVectors: (config: S3VectorsPaginationConfiguration, input: ListVectorsCommandInput, ...rest: any[]) => Paginator<ListVectorsCommandOutput>;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "../commands/CreateIndexCommand";
|
|
4
|
+
import { CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput } from "../commands/CreateVectorBucketCommand";
|
|
5
|
+
import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "../commands/DeleteIndexCommand";
|
|
6
|
+
import { DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput } from "../commands/DeleteVectorBucketCommand";
|
|
7
|
+
import { DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput } from "../commands/DeleteVectorBucketPolicyCommand";
|
|
8
|
+
import { DeleteVectorsCommandInput, DeleteVectorsCommandOutput } from "../commands/DeleteVectorsCommand";
|
|
9
|
+
import { GetIndexCommandInput, GetIndexCommandOutput } from "../commands/GetIndexCommand";
|
|
10
|
+
import { GetVectorBucketCommandInput, GetVectorBucketCommandOutput } from "../commands/GetVectorBucketCommand";
|
|
11
|
+
import { GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput } from "../commands/GetVectorBucketPolicyCommand";
|
|
12
|
+
import { GetVectorsCommandInput, GetVectorsCommandOutput } from "../commands/GetVectorsCommand";
|
|
13
|
+
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
14
|
+
import { ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput } from "../commands/ListVectorBucketsCommand";
|
|
15
|
+
import { ListVectorsCommandInput, ListVectorsCommandOutput } from "../commands/ListVectorsCommand";
|
|
16
|
+
import { PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput } from "../commands/PutVectorBucketPolicyCommand";
|
|
17
|
+
import { PutVectorsCommandInput, PutVectorsCommandOutput } from "../commands/PutVectorsCommand";
|
|
18
|
+
import { QueryVectorsCommandInput, QueryVectorsCommandOutput } from "../commands/QueryVectorsCommand";
|
|
19
|
+
/**
|
|
20
|
+
* serializeAws_restJson1CreateIndexCommand
|
|
21
|
+
*/
|
|
22
|
+
export declare const se_CreateIndexCommand: (input: CreateIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
/**
|
|
24
|
+
* serializeAws_restJson1CreateVectorBucketCommand
|
|
25
|
+
*/
|
|
26
|
+
export declare const se_CreateVectorBucketCommand: (input: CreateVectorBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
/**
|
|
28
|
+
* serializeAws_restJson1DeleteIndexCommand
|
|
29
|
+
*/
|
|
30
|
+
export declare const se_DeleteIndexCommand: (input: DeleteIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
/**
|
|
32
|
+
* serializeAws_restJson1DeleteVectorBucketCommand
|
|
33
|
+
*/
|
|
34
|
+
export declare const se_DeleteVectorBucketCommand: (input: DeleteVectorBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
/**
|
|
36
|
+
* serializeAws_restJson1DeleteVectorBucketPolicyCommand
|
|
37
|
+
*/
|
|
38
|
+
export declare const se_DeleteVectorBucketPolicyCommand: (input: DeleteVectorBucketPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
/**
|
|
40
|
+
* serializeAws_restJson1DeleteVectorsCommand
|
|
41
|
+
*/
|
|
42
|
+
export declare const se_DeleteVectorsCommand: (input: DeleteVectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_restJson1GetIndexCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_GetIndexCommand: (input: GetIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_restJson1GetVectorBucketCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_GetVectorBucketCommand: (input: GetVectorBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* serializeAws_restJson1GetVectorBucketPolicyCommand
|
|
53
|
+
*/
|
|
54
|
+
export declare const se_GetVectorBucketPolicyCommand: (input: GetVectorBucketPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
/**
|
|
56
|
+
* serializeAws_restJson1GetVectorsCommand
|
|
57
|
+
*/
|
|
58
|
+
export declare const se_GetVectorsCommand: (input: GetVectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1ListIndexesCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_ListIndexesCommand: (input: ListIndexesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
/**
|
|
64
|
+
* serializeAws_restJson1ListVectorBucketsCommand
|
|
65
|
+
*/
|
|
66
|
+
export declare const se_ListVectorBucketsCommand: (input: ListVectorBucketsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
/**
|
|
68
|
+
* serializeAws_restJson1ListVectorsCommand
|
|
69
|
+
*/
|
|
70
|
+
export declare const se_ListVectorsCommand: (input: ListVectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* serializeAws_restJson1PutVectorBucketPolicyCommand
|
|
73
|
+
*/
|
|
74
|
+
export declare const se_PutVectorBucketPolicyCommand: (input: PutVectorBucketPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
/**
|
|
76
|
+
* serializeAws_restJson1PutVectorsCommand
|
|
77
|
+
*/
|
|
78
|
+
export declare const se_PutVectorsCommand: (input: PutVectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
/**
|
|
80
|
+
* serializeAws_restJson1QueryVectorsCommand
|
|
81
|
+
*/
|
|
82
|
+
export declare const se_QueryVectorsCommand: (input: QueryVectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
/**
|
|
84
|
+
* deserializeAws_restJson1CreateIndexCommand
|
|
85
|
+
*/
|
|
86
|
+
export declare const de_CreateIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIndexCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* deserializeAws_restJson1CreateVectorBucketCommand
|
|
89
|
+
*/
|
|
90
|
+
export declare const de_CreateVectorBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVectorBucketCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* deserializeAws_restJson1DeleteIndexCommand
|
|
93
|
+
*/
|
|
94
|
+
export declare const de_DeleteIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIndexCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* deserializeAws_restJson1DeleteVectorBucketCommand
|
|
97
|
+
*/
|
|
98
|
+
export declare const de_DeleteVectorBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVectorBucketCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* deserializeAws_restJson1DeleteVectorBucketPolicyCommand
|
|
101
|
+
*/
|
|
102
|
+
export declare const de_DeleteVectorBucketPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVectorBucketPolicyCommandOutput>;
|
|
103
|
+
/**
|
|
104
|
+
* deserializeAws_restJson1DeleteVectorsCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const de_DeleteVectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVectorsCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* deserializeAws_restJson1GetIndexCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const de_GetIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIndexCommandOutput>;
|
|
111
|
+
/**
|
|
112
|
+
* deserializeAws_restJson1GetVectorBucketCommand
|
|
113
|
+
*/
|
|
114
|
+
export declare const de_GetVectorBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVectorBucketCommandOutput>;
|
|
115
|
+
/**
|
|
116
|
+
* deserializeAws_restJson1GetVectorBucketPolicyCommand
|
|
117
|
+
*/
|
|
118
|
+
export declare const de_GetVectorBucketPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVectorBucketPolicyCommandOutput>;
|
|
119
|
+
/**
|
|
120
|
+
* deserializeAws_restJson1GetVectorsCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const de_GetVectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVectorsCommandOutput>;
|
|
123
|
+
/**
|
|
124
|
+
* deserializeAws_restJson1ListIndexesCommand
|
|
125
|
+
*/
|
|
126
|
+
export declare const de_ListIndexesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIndexesCommandOutput>;
|
|
127
|
+
/**
|
|
128
|
+
* deserializeAws_restJson1ListVectorBucketsCommand
|
|
129
|
+
*/
|
|
130
|
+
export declare const de_ListVectorBucketsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVectorBucketsCommandOutput>;
|
|
131
|
+
/**
|
|
132
|
+
* deserializeAws_restJson1ListVectorsCommand
|
|
133
|
+
*/
|
|
134
|
+
export declare const de_ListVectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVectorsCommandOutput>;
|
|
135
|
+
/**
|
|
136
|
+
* deserializeAws_restJson1PutVectorBucketPolicyCommand
|
|
137
|
+
*/
|
|
138
|
+
export declare const de_PutVectorBucketPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutVectorBucketPolicyCommandOutput>;
|
|
139
|
+
/**
|
|
140
|
+
* deserializeAws_restJson1PutVectorsCommand
|
|
141
|
+
*/
|
|
142
|
+
export declare const de_PutVectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutVectorsCommandOutput>;
|
|
143
|
+
/**
|
|
144
|
+
* deserializeAws_restJson1QueryVectorsCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const de_QueryVectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryVectorsCommandOutput>;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { S3VectorsClientConfig } from "./S3VectorsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: S3VectorsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
22
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
27
|
+
disableHostPrefix: boolean;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
profile?: string;
|
|
30
|
+
logger: import("@smithy/types").Logger;
|
|
31
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
|
+
}) => import("@smithy/types").EndpointV2;
|
|
39
|
+
tls?: boolean;
|
|
40
|
+
serviceConfiguredEndpoint?: never;
|
|
41
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
42
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
43
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3VectorsHttpAuthSchemeProvider;
|
|
44
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
45
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
46
|
+
signingEscapePath?: boolean;
|
|
47
|
+
systemClockOffset?: number;
|
|
48
|
+
signingRegion?: string;
|
|
49
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
50
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { S3VectorsClientConfig } from "./S3VectorsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: S3VectorsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
15
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
16
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
18
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
cacheMiddleware?: boolean | undefined;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
27
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
29
|
+
disableHostPrefix: boolean;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
profile?: string;
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
37
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
38
|
+
logger?: import("@smithy/types").Logger;
|
|
39
|
+
}) => import("@smithy/types").EndpointV2;
|
|
40
|
+
tls?: boolean;
|
|
41
|
+
serviceConfiguredEndpoint?: never;
|
|
42
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
43
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3VectorsHttpAuthSchemeProvider;
|
|
44
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
45
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
46
|
+
signingEscapePath?: boolean;
|
|
47
|
+
systemClockOffset?: number;
|
|
48
|
+
signingRegion?: string;
|
|
49
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
50
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { S3VectorsClientConfig } from "./S3VectorsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: S3VectorsClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean;
|
|
11
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
12
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
14
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
15
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
18
|
+
disableHostPrefix: boolean;
|
|
19
|
+
serviceId: string;
|
|
20
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
22
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
+
profile?: string;
|
|
24
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
|
+
logger?: import("@smithy/types").Logger;
|
|
37
|
+
}) => import("@smithy/types").EndpointV2;
|
|
38
|
+
tls?: boolean;
|
|
39
|
+
serviceConfiguredEndpoint?: never;
|
|
40
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
41
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
42
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3VectorsHttpAuthSchemeProvider;
|
|
43
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
44
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
45
|
+
signingEscapePath?: boolean;
|
|
46
|
+
systemClockOffset?: number;
|
|
47
|
+
signingRegion?: string;
|
|
48
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
49
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { S3VectorsClientConfig } from "./S3VectorsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: S3VectorsClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3VectorsHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { S3VectorsExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configure(extensionConfiguration: S3VectorsExtensionConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|