@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
|
@@ -1,146 +0,0 @@
|
|
|
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>;
|
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateIndexCommandInput,
|
|
8
|
-
CreateIndexCommandOutput,
|
|
9
|
-
} from "../commands/CreateIndexCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateVectorBucketCommandInput,
|
|
12
|
-
CreateVectorBucketCommandOutput,
|
|
13
|
-
} from "../commands/CreateVectorBucketCommand";
|
|
14
|
-
import {
|
|
15
|
-
DeleteIndexCommandInput,
|
|
16
|
-
DeleteIndexCommandOutput,
|
|
17
|
-
} from "../commands/DeleteIndexCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteVectorBucketCommandInput,
|
|
20
|
-
DeleteVectorBucketCommandOutput,
|
|
21
|
-
} from "../commands/DeleteVectorBucketCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteVectorBucketPolicyCommandInput,
|
|
24
|
-
DeleteVectorBucketPolicyCommandOutput,
|
|
25
|
-
} from "../commands/DeleteVectorBucketPolicyCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteVectorsCommandInput,
|
|
28
|
-
DeleteVectorsCommandOutput,
|
|
29
|
-
} from "../commands/DeleteVectorsCommand";
|
|
30
|
-
import {
|
|
31
|
-
GetIndexCommandInput,
|
|
32
|
-
GetIndexCommandOutput,
|
|
33
|
-
} from "../commands/GetIndexCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetVectorBucketCommandInput,
|
|
36
|
-
GetVectorBucketCommandOutput,
|
|
37
|
-
} from "../commands/GetVectorBucketCommand";
|
|
38
|
-
import {
|
|
39
|
-
GetVectorBucketPolicyCommandInput,
|
|
40
|
-
GetVectorBucketPolicyCommandOutput,
|
|
41
|
-
} from "../commands/GetVectorBucketPolicyCommand";
|
|
42
|
-
import {
|
|
43
|
-
GetVectorsCommandInput,
|
|
44
|
-
GetVectorsCommandOutput,
|
|
45
|
-
} from "../commands/GetVectorsCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListIndexesCommandInput,
|
|
48
|
-
ListIndexesCommandOutput,
|
|
49
|
-
} from "../commands/ListIndexesCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListVectorBucketsCommandInput,
|
|
52
|
-
ListVectorBucketsCommandOutput,
|
|
53
|
-
} from "../commands/ListVectorBucketsCommand";
|
|
54
|
-
import {
|
|
55
|
-
ListVectorsCommandInput,
|
|
56
|
-
ListVectorsCommandOutput,
|
|
57
|
-
} from "../commands/ListVectorsCommand";
|
|
58
|
-
import {
|
|
59
|
-
PutVectorBucketPolicyCommandInput,
|
|
60
|
-
PutVectorBucketPolicyCommandOutput,
|
|
61
|
-
} from "../commands/PutVectorBucketPolicyCommand";
|
|
62
|
-
import {
|
|
63
|
-
PutVectorsCommandInput,
|
|
64
|
-
PutVectorsCommandOutput,
|
|
65
|
-
} from "../commands/PutVectorsCommand";
|
|
66
|
-
import {
|
|
67
|
-
QueryVectorsCommandInput,
|
|
68
|
-
QueryVectorsCommandOutput,
|
|
69
|
-
} from "../commands/QueryVectorsCommand";
|
|
70
|
-
export declare const se_CreateIndexCommand: (
|
|
71
|
-
input: CreateIndexCommandInput,
|
|
72
|
-
context: __SerdeContext
|
|
73
|
-
) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const se_CreateVectorBucketCommand: (
|
|
75
|
-
input: CreateVectorBucketCommandInput,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const se_DeleteIndexCommand: (
|
|
79
|
-
input: DeleteIndexCommandInput,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const se_DeleteVectorBucketCommand: (
|
|
83
|
-
input: DeleteVectorBucketCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_DeleteVectorBucketPolicyCommand: (
|
|
87
|
-
input: DeleteVectorBucketPolicyCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_DeleteVectorsCommand: (
|
|
91
|
-
input: DeleteVectorsCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_GetIndexCommand: (
|
|
95
|
-
input: GetIndexCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_GetVectorBucketCommand: (
|
|
99
|
-
input: GetVectorBucketCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_GetVectorBucketPolicyCommand: (
|
|
103
|
-
input: GetVectorBucketPolicyCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_GetVectorsCommand: (
|
|
107
|
-
input: GetVectorsCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_ListIndexesCommand: (
|
|
111
|
-
input: ListIndexesCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_ListVectorBucketsCommand: (
|
|
115
|
-
input: ListVectorBucketsCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_ListVectorsCommand: (
|
|
119
|
-
input: ListVectorsCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_PutVectorBucketPolicyCommand: (
|
|
123
|
-
input: PutVectorBucketPolicyCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_PutVectorsCommand: (
|
|
127
|
-
input: PutVectorsCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_QueryVectorsCommand: (
|
|
131
|
-
input: QueryVectorsCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const de_CreateIndexCommand: (
|
|
135
|
-
output: __HttpResponse,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<CreateIndexCommandOutput>;
|
|
138
|
-
export declare const de_CreateVectorBucketCommand: (
|
|
139
|
-
output: __HttpResponse,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<CreateVectorBucketCommandOutput>;
|
|
142
|
-
export declare const de_DeleteIndexCommand: (
|
|
143
|
-
output: __HttpResponse,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<DeleteIndexCommandOutput>;
|
|
146
|
-
export declare const de_DeleteVectorBucketCommand: (
|
|
147
|
-
output: __HttpResponse,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<DeleteVectorBucketCommandOutput>;
|
|
150
|
-
export declare const de_DeleteVectorBucketPolicyCommand: (
|
|
151
|
-
output: __HttpResponse,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<DeleteVectorBucketPolicyCommandOutput>;
|
|
154
|
-
export declare const de_DeleteVectorsCommand: (
|
|
155
|
-
output: __HttpResponse,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<DeleteVectorsCommandOutput>;
|
|
158
|
-
export declare const de_GetIndexCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<GetIndexCommandOutput>;
|
|
162
|
-
export declare const de_GetVectorBucketCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<GetVectorBucketCommandOutput>;
|
|
166
|
-
export declare const de_GetVectorBucketPolicyCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<GetVectorBucketPolicyCommandOutput>;
|
|
170
|
-
export declare const de_GetVectorsCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<GetVectorsCommandOutput>;
|
|
174
|
-
export declare const de_ListIndexesCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<ListIndexesCommandOutput>;
|
|
178
|
-
export declare const de_ListVectorBucketsCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<ListVectorBucketsCommandOutput>;
|
|
182
|
-
export declare const de_ListVectorsCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<ListVectorsCommandOutput>;
|
|
186
|
-
export declare const de_PutVectorBucketPolicyCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<PutVectorBucketPolicyCommandOutput>;
|
|
190
|
-
export declare const de_PutVectorsCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<PutVectorsCommandOutput>;
|
|
194
|
-
export declare const de_QueryVectorsCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<QueryVectorsCommandOutput>;
|