@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.
Files changed (163) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +333 -0
  3. package/dist-cjs/S3Vectors.js +43 -0
  4. package/dist-cjs/S3VectorsClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateIndexCommand.js +26 -0
  8. package/dist-cjs/commands/CreateVectorBucketCommand.js +26 -0
  9. package/dist-cjs/commands/DeleteIndexCommand.js +26 -0
  10. package/dist-cjs/commands/DeleteVectorBucketCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteVectorBucketPolicyCommand.js +26 -0
  12. package/dist-cjs/commands/DeleteVectorsCommand.js +26 -0
  13. package/dist-cjs/commands/GetIndexCommand.js +26 -0
  14. package/dist-cjs/commands/GetVectorBucketCommand.js +26 -0
  15. package/dist-cjs/commands/GetVectorBucketPolicyCommand.js +26 -0
  16. package/dist-cjs/commands/GetVectorsCommand.js +26 -0
  17. package/dist-cjs/commands/ListIndexesCommand.js +26 -0
  18. package/dist-cjs/commands/ListVectorBucketsCommand.js +26 -0
  19. package/dist-cjs/commands/ListVectorsCommand.js +26 -0
  20. package/dist-cjs/commands/PutVectorBucketPolicyCommand.js +26 -0
  21. package/dist-cjs/commands/PutVectorsCommand.js +26 -0
  22. package/dist-cjs/commands/QueryVectorsCommand.js +26 -0
  23. package/dist-cjs/commands/index.js +19 -0
  24. package/dist-cjs/endpoint/EndpointParameters.js +15 -0
  25. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  26. package/dist-cjs/endpoint/ruleset.js +7 -0
  27. package/dist-cjs/extensionConfiguration.js +2 -0
  28. package/dist-cjs/index.js +11 -0
  29. package/dist-cjs/models/S3VectorsServiceException.js +12 -0
  30. package/dist-cjs/models/index.js +4 -0
  31. package/dist-cjs/models/models_0.js +186 -0
  32. package/dist-cjs/pagination/Interfaces.js +2 -0
  33. package/dist-cjs/pagination/ListIndexesPaginator.js +7 -0
  34. package/dist-cjs/pagination/ListVectorBucketsPaginator.js +7 -0
  35. package/dist-cjs/pagination/ListVectorsPaginator.js +7 -0
  36. package/dist-cjs/pagination/index.js +7 -0
  37. package/dist-cjs/protocols/Aws_restJson1.js +858 -0
  38. package/dist-cjs/runtimeConfig.browser.js +39 -0
  39. package/dist-cjs/runtimeConfig.js +56 -0
  40. package/dist-cjs/runtimeConfig.native.js +15 -0
  41. package/dist-cjs/runtimeConfig.shared.js +34 -0
  42. package/dist-cjs/runtimeExtensions.js +13 -0
  43. package/dist-es/S3Vectors.js +39 -0
  44. package/dist-es/S3VectorsClient.js +48 -0
  45. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  46. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  47. package/dist-es/commands/CreateIndexCommand.js +22 -0
  48. package/dist-es/commands/CreateVectorBucketCommand.js +22 -0
  49. package/dist-es/commands/DeleteIndexCommand.js +22 -0
  50. package/dist-es/commands/DeleteVectorBucketCommand.js +22 -0
  51. package/dist-es/commands/DeleteVectorBucketPolicyCommand.js +22 -0
  52. package/dist-es/commands/DeleteVectorsCommand.js +22 -0
  53. package/dist-es/commands/GetIndexCommand.js +22 -0
  54. package/dist-es/commands/GetVectorBucketCommand.js +22 -0
  55. package/dist-es/commands/GetVectorBucketPolicyCommand.js +22 -0
  56. package/dist-es/commands/GetVectorsCommand.js +22 -0
  57. package/dist-es/commands/ListIndexesCommand.js +22 -0
  58. package/dist-es/commands/ListVectorBucketsCommand.js +22 -0
  59. package/dist-es/commands/ListVectorsCommand.js +22 -0
  60. package/dist-es/commands/PutVectorBucketPolicyCommand.js +22 -0
  61. package/dist-es/commands/PutVectorsCommand.js +22 -0
  62. package/dist-es/commands/QueryVectorsCommand.js +22 -0
  63. package/dist-es/commands/index.js +16 -0
  64. package/dist-es/endpoint/EndpointParameters.js +11 -0
  65. package/dist-es/endpoint/endpointResolver.js +14 -0
  66. package/dist-es/endpoint/ruleset.js +4 -0
  67. package/dist-es/extensionConfiguration.js +1 -0
  68. package/dist-es/index.js +6 -0
  69. package/dist-es/models/S3VectorsServiceException.js +8 -0
  70. package/dist-es/models/index.js +1 -0
  71. package/dist-es/models/models_0.js +171 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListIndexesPaginator.js +4 -0
  74. package/dist-es/pagination/ListVectorBucketsPaginator.js +4 -0
  75. package/dist-es/pagination/ListVectorsPaginator.js +4 -0
  76. package/dist-es/pagination/index.js +4 -0
  77. package/dist-es/protocols/Aws_restJson1.js +823 -0
  78. package/dist-es/runtimeConfig.browser.js +34 -0
  79. package/dist-es/runtimeConfig.js +51 -0
  80. package/dist-es/runtimeConfig.native.js +11 -0
  81. package/dist-es/runtimeConfig.shared.js +30 -0
  82. package/dist-es/runtimeExtensions.js +9 -0
  83. package/dist-types/S3Vectors.d.ts +131 -0
  84. package/dist-types/S3VectorsClient.d.ts +203 -0
  85. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  86. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  87. package/dist-types/commands/CreateIndexCommand.d.ts +104 -0
  88. package/dist-types/commands/CreateVectorBucketCommand.d.ts +95 -0
  89. package/dist-types/commands/DeleteIndexCommand.d.ts +90 -0
  90. package/dist-types/commands/DeleteVectorBucketCommand.d.ts +92 -0
  91. package/dist-types/commands/DeleteVectorBucketPolicyCommand.d.ts +92 -0
  92. package/dist-types/commands/DeleteVectorsCommand.d.ts +108 -0
  93. package/dist-types/commands/GetIndexCommand.d.ts +108 -0
  94. package/dist-types/commands/GetVectorBucketCommand.d.ts +102 -0
  95. package/dist-types/commands/GetVectorBucketPolicyCommand.d.ts +94 -0
  96. package/dist-types/commands/GetVectorsCommand.d.ts +122 -0
  97. package/dist-types/commands/ListIndexesCommand.d.ts +105 -0
  98. package/dist-types/commands/ListVectorBucketsCommand.d.ts +99 -0
  99. package/dist-types/commands/ListVectorsCommand.d.ts +112 -0
  100. package/dist-types/commands/PutVectorBucketPolicyCommand.d.ts +93 -0
  101. package/dist-types/commands/PutVectorsCommand.d.ts +116 -0
  102. package/dist-types/commands/QueryVectorsCommand.d.ts +127 -0
  103. package/dist-types/commands/index.d.ts +16 -0
  104. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  105. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  106. package/dist-types/endpoint/ruleset.d.ts +2 -0
  107. package/dist-types/extensionConfiguration.d.ts +9 -0
  108. package/dist-types/index.d.ts +14 -0
  109. package/dist-types/models/S3VectorsServiceException.d.ts +14 -0
  110. package/dist-types/models/index.d.ts +1 -0
  111. package/dist-types/models/models_0.d.ts +1013 -0
  112. package/dist-types/pagination/Interfaces.d.ts +8 -0
  113. package/dist-types/pagination/ListIndexesPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListVectorBucketsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListVectorsPaginator.d.ts +7 -0
  116. package/dist-types/pagination/index.d.ts +4 -0
  117. package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
  118. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  119. package/dist-types/runtimeConfig.d.ts +50 -0
  120. package/dist-types/runtimeConfig.native.d.ts +49 -0
  121. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  122. package/dist-types/runtimeExtensions.d.ts +17 -0
  123. package/dist-types/ts3.4/S3Vectors.d.ts +286 -0
  124. package/dist-types/ts3.4/S3VectorsClient.d.ts +215 -0
  125. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  126. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +47 -0
  128. package/dist-types/ts3.4/commands/CreateVectorBucketCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/DeleteIndexCommand.d.ts +47 -0
  130. package/dist-types/ts3.4/commands/DeleteVectorBucketCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/DeleteVectorBucketPolicyCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/DeleteVectorsCommand.d.ts +47 -0
  133. package/dist-types/ts3.4/commands/GetIndexCommand.d.ts +47 -0
  134. package/dist-types/ts3.4/commands/GetVectorBucketCommand.d.ts +50 -0
  135. package/dist-types/ts3.4/commands/GetVectorBucketPolicyCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/GetVectorsCommand.d.ts +47 -0
  137. package/dist-types/ts3.4/commands/ListIndexesCommand.d.ts +47 -0
  138. package/dist-types/ts3.4/commands/ListVectorBucketsCommand.d.ts +50 -0
  139. package/dist-types/ts3.4/commands/ListVectorsCommand.d.ts +47 -0
  140. package/dist-types/ts3.4/commands/PutVectorBucketPolicyCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/PutVectorsCommand.d.ts +47 -0
  142. package/dist-types/ts3.4/commands/QueryVectorsCommand.d.ts +47 -0
  143. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  144. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  145. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  146. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  147. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  148. package/dist-types/ts3.4/index.d.ts +9 -0
  149. package/dist-types/ts3.4/models/S3VectorsServiceException.d.ts +9 -0
  150. package/dist-types/ts3.4/models/index.d.ts +1 -0
  151. package/dist-types/ts3.4/models/models_0.d.ts +311 -0
  152. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  153. package/dist-types/ts3.4/pagination/ListIndexesPaginator.d.ts +11 -0
  154. package/dist-types/ts3.4/pagination/ListVectorBucketsPaginator.d.ts +11 -0
  155. package/dist-types/ts3.4/pagination/ListVectorsPaginator.d.ts +11 -0
  156. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  157. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  158. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  159. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  160. package/dist-types/ts3.4/runtimeConfig.native.d.ts +95 -0
  161. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  162. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  163. 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
+ }