@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,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteIndexCommandInput extends DeleteIndexInput {}
|
|
12
|
+
export interface DeleteIndexCommandOutput
|
|
13
|
+
extends DeleteIndexOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteIndexCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteIndexCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteIndexCommandInput,
|
|
20
|
+
DeleteIndexCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [DeleteIndexCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteIndexCommandInput,
|
|
29
|
+
DeleteIndexCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteIndexCommand extends DeleteIndexCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteIndexInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteIndexCommandInput;
|
|
44
|
+
output: DeleteIndexCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteVectorBucketInput,
|
|
5
|
+
DeleteVectorBucketOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3VectorsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3VectorsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteVectorBucketCommandInput
|
|
15
|
+
extends DeleteVectorBucketInput {}
|
|
16
|
+
export interface DeleteVectorBucketCommandOutput
|
|
17
|
+
extends DeleteVectorBucketOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteVectorBucketCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteVectorBucketCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteVectorBucketCommandInput,
|
|
24
|
+
DeleteVectorBucketCommandOutput,
|
|
25
|
+
S3VectorsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DeleteVectorBucketCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteVectorBucketCommandInput,
|
|
33
|
+
DeleteVectorBucketCommandOutput,
|
|
34
|
+
S3VectorsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteVectorBucketCommand extends DeleteVectorBucketCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteVectorBucketInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteVectorBucketCommandInput;
|
|
48
|
+
output: DeleteVectorBucketCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteVectorBucketPolicyInput,
|
|
5
|
+
DeleteVectorBucketPolicyOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3VectorsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3VectorsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteVectorBucketPolicyCommandInput
|
|
15
|
+
extends DeleteVectorBucketPolicyInput {}
|
|
16
|
+
export interface DeleteVectorBucketPolicyCommandOutput
|
|
17
|
+
extends DeleteVectorBucketPolicyOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteVectorBucketPolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteVectorBucketPolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteVectorBucketPolicyCommandInput,
|
|
24
|
+
DeleteVectorBucketPolicyCommandOutput,
|
|
25
|
+
S3VectorsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DeleteVectorBucketPolicyCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteVectorBucketPolicyCommandInput,
|
|
33
|
+
DeleteVectorBucketPolicyCommandOutput,
|
|
34
|
+
S3VectorsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteVectorBucketPolicyCommand extends DeleteVectorBucketPolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteVectorBucketPolicyInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteVectorBucketPolicyCommandInput;
|
|
48
|
+
output: DeleteVectorBucketPolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteVectorsInput, DeleteVectorsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteVectorsCommandInput extends DeleteVectorsInput {}
|
|
12
|
+
export interface DeleteVectorsCommandOutput
|
|
13
|
+
extends DeleteVectorsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteVectorsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteVectorsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteVectorsCommandInput,
|
|
20
|
+
DeleteVectorsCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteVectorsCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteVectorsCommandInput,
|
|
29
|
+
DeleteVectorsCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteVectorsCommand extends DeleteVectorsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteVectorsInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteVectorsCommandInput;
|
|
44
|
+
output: DeleteVectorsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetIndexInput, GetIndexOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetIndexCommandInput extends GetIndexInput {}
|
|
12
|
+
export interface GetIndexCommandOutput
|
|
13
|
+
extends GetIndexOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetIndexCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetIndexCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetIndexCommandInput,
|
|
20
|
+
GetIndexCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [GetIndexCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetIndexCommandInput,
|
|
29
|
+
GetIndexCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetIndexCommand extends GetIndexCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetIndexInput;
|
|
40
|
+
output: GetIndexOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetIndexCommandInput;
|
|
44
|
+
output: GetIndexCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetVectorBucketInput,
|
|
5
|
+
GetVectorBucketOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3VectorsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3VectorsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetVectorBucketCommandInput extends GetVectorBucketInput {}
|
|
15
|
+
export interface GetVectorBucketCommandOutput
|
|
16
|
+
extends GetVectorBucketOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetVectorBucketCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetVectorBucketCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetVectorBucketCommandInput,
|
|
23
|
+
GetVectorBucketCommandOutput,
|
|
24
|
+
S3VectorsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetVectorBucketCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetVectorBucketCommandInput,
|
|
32
|
+
GetVectorBucketCommandOutput,
|
|
33
|
+
S3VectorsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetVectorBucketCommand extends GetVectorBucketCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetVectorBucketInput;
|
|
43
|
+
output: GetVectorBucketOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetVectorBucketCommandInput;
|
|
47
|
+
output: GetVectorBucketCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetVectorBucketPolicyInput,
|
|
5
|
+
GetVectorBucketPolicyOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3VectorsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3VectorsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetVectorBucketPolicyCommandInput
|
|
15
|
+
extends GetVectorBucketPolicyInput {}
|
|
16
|
+
export interface GetVectorBucketPolicyCommandOutput
|
|
17
|
+
extends GetVectorBucketPolicyOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetVectorBucketPolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetVectorBucketPolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetVectorBucketPolicyCommandInput,
|
|
24
|
+
GetVectorBucketPolicyCommandOutput,
|
|
25
|
+
S3VectorsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [GetVectorBucketPolicyCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetVectorBucketPolicyCommandInput,
|
|
33
|
+
GetVectorBucketPolicyCommandOutput,
|
|
34
|
+
S3VectorsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetVectorBucketPolicyCommand extends GetVectorBucketPolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetVectorBucketPolicyInput;
|
|
44
|
+
output: GetVectorBucketPolicyOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetVectorBucketPolicyCommandInput;
|
|
48
|
+
output: GetVectorBucketPolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetVectorsInput, GetVectorsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetVectorsCommandInput extends GetVectorsInput {}
|
|
12
|
+
export interface GetVectorsCommandOutput
|
|
13
|
+
extends GetVectorsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetVectorsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetVectorsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetVectorsCommandInput,
|
|
20
|
+
GetVectorsCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetVectorsCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetVectorsCommandInput,
|
|
29
|
+
GetVectorsCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetVectorsCommand extends GetVectorsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetVectorsInput;
|
|
40
|
+
output: GetVectorsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetVectorsCommandInput;
|
|
44
|
+
output: GetVectorsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListIndexesInput, ListIndexesOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListIndexesCommandInput extends ListIndexesInput {}
|
|
12
|
+
export interface ListIndexesCommandOutput
|
|
13
|
+
extends ListIndexesOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListIndexesCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListIndexesCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListIndexesCommandInput,
|
|
20
|
+
ListIndexesCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListIndexesCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListIndexesCommandInput,
|
|
29
|
+
ListIndexesCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListIndexesCommand extends ListIndexesCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListIndexesInput;
|
|
40
|
+
output: ListIndexesOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListIndexesCommandInput;
|
|
44
|
+
output: ListIndexesCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListVectorBucketsInput,
|
|
5
|
+
ListVectorBucketsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3VectorsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3VectorsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListVectorBucketsCommandInput extends ListVectorBucketsInput {}
|
|
15
|
+
export interface ListVectorBucketsCommandOutput
|
|
16
|
+
extends ListVectorBucketsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListVectorBucketsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListVectorBucketsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListVectorBucketsCommandInput,
|
|
23
|
+
ListVectorBucketsCommandOutput,
|
|
24
|
+
S3VectorsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListVectorBucketsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListVectorBucketsCommandInput,
|
|
32
|
+
ListVectorBucketsCommandOutput,
|
|
33
|
+
S3VectorsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListVectorBucketsCommand extends ListVectorBucketsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListVectorBucketsInput;
|
|
43
|
+
output: ListVectorBucketsOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListVectorBucketsCommandInput;
|
|
47
|
+
output: ListVectorBucketsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListVectorsInput, ListVectorsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListVectorsCommandInput extends ListVectorsInput {}
|
|
12
|
+
export interface ListVectorsCommandOutput
|
|
13
|
+
extends ListVectorsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListVectorsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListVectorsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListVectorsCommandInput,
|
|
20
|
+
ListVectorsCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListVectorsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListVectorsCommandInput,
|
|
29
|
+
ListVectorsCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListVectorsCommand extends ListVectorsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListVectorsInput;
|
|
40
|
+
output: ListVectorsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListVectorsCommandInput;
|
|
44
|
+
output: ListVectorsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
PutVectorBucketPolicyInput,
|
|
5
|
+
PutVectorBucketPolicyOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3VectorsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3VectorsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutVectorBucketPolicyCommandInput
|
|
15
|
+
extends PutVectorBucketPolicyInput {}
|
|
16
|
+
export interface PutVectorBucketPolicyCommandOutput
|
|
17
|
+
extends PutVectorBucketPolicyOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutVectorBucketPolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutVectorBucketPolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutVectorBucketPolicyCommandInput,
|
|
24
|
+
PutVectorBucketPolicyCommandOutput,
|
|
25
|
+
S3VectorsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutVectorBucketPolicyCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutVectorBucketPolicyCommandInput,
|
|
33
|
+
PutVectorBucketPolicyCommandOutput,
|
|
34
|
+
S3VectorsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutVectorBucketPolicyCommand extends PutVectorBucketPolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutVectorBucketPolicyInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutVectorBucketPolicyCommandInput;
|
|
48
|
+
output: PutVectorBucketPolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { PutVectorsInput, PutVectorsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface PutVectorsCommandInput extends PutVectorsInput {}
|
|
12
|
+
export interface PutVectorsCommandOutput
|
|
13
|
+
extends PutVectorsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const PutVectorsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: PutVectorsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
PutVectorsCommandInput,
|
|
20
|
+
PutVectorsCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: PutVectorsCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
PutVectorsCommandInput,
|
|
29
|
+
PutVectorsCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class PutVectorsCommand extends PutVectorsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: PutVectorsInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: PutVectorsCommandInput;
|
|
44
|
+
output: PutVectorsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { QueryVectorsInput, QueryVectorsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3VectorsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3VectorsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface QueryVectorsCommandInput extends QueryVectorsInput {}
|
|
12
|
+
export interface QueryVectorsCommandOutput
|
|
13
|
+
extends QueryVectorsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const QueryVectorsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: QueryVectorsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
QueryVectorsCommandInput,
|
|
20
|
+
QueryVectorsCommandOutput,
|
|
21
|
+
S3VectorsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: QueryVectorsCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
QueryVectorsCommandInput,
|
|
29
|
+
QueryVectorsCommandOutput,
|
|
30
|
+
S3VectorsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class QueryVectorsCommand extends QueryVectorsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: QueryVectorsInput;
|
|
40
|
+
output: QueryVectorsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: QueryVectorsCommandInput;
|
|
44
|
+
output: QueryVectorsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|