@aws-sdk/client-s3tables 3.705.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 (203) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +413 -0
  3. package/dist-cjs/S3Tables.js +63 -0
  4. package/dist-cjs/S3TablesClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateNamespaceCommand.js +26 -0
  8. package/dist-cjs/commands/CreateTableBucketCommand.js +26 -0
  9. package/dist-cjs/commands/CreateTableCommand.js +26 -0
  10. package/dist-cjs/commands/DeleteNamespaceCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteTableBucketCommand.js +26 -0
  12. package/dist-cjs/commands/DeleteTableBucketPolicyCommand.js +26 -0
  13. package/dist-cjs/commands/DeleteTableCommand.js +26 -0
  14. package/dist-cjs/commands/DeleteTablePolicyCommand.js +26 -0
  15. package/dist-cjs/commands/GetNamespaceCommand.js +26 -0
  16. package/dist-cjs/commands/GetTableBucketCommand.js +26 -0
  17. package/dist-cjs/commands/GetTableBucketMaintenanceConfigurationCommand.js +26 -0
  18. package/dist-cjs/commands/GetTableBucketPolicyCommand.js +26 -0
  19. package/dist-cjs/commands/GetTableCommand.js +26 -0
  20. package/dist-cjs/commands/GetTableMaintenanceConfigurationCommand.js +26 -0
  21. package/dist-cjs/commands/GetTableMaintenanceJobStatusCommand.js +26 -0
  22. package/dist-cjs/commands/GetTableMetadataLocationCommand.js +26 -0
  23. package/dist-cjs/commands/GetTablePolicyCommand.js +26 -0
  24. package/dist-cjs/commands/ListNamespacesCommand.js +26 -0
  25. package/dist-cjs/commands/ListTableBucketsCommand.js +26 -0
  26. package/dist-cjs/commands/ListTablesCommand.js +26 -0
  27. package/dist-cjs/commands/PutTableBucketMaintenanceConfigurationCommand.js +26 -0
  28. package/dist-cjs/commands/PutTableBucketPolicyCommand.js +26 -0
  29. package/dist-cjs/commands/PutTableMaintenanceConfigurationCommand.js +26 -0
  30. package/dist-cjs/commands/PutTablePolicyCommand.js +26 -0
  31. package/dist-cjs/commands/RenameTableCommand.js +26 -0
  32. package/dist-cjs/commands/UpdateTableMetadataLocationCommand.js +26 -0
  33. package/dist-cjs/commands/index.js +29 -0
  34. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  35. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  36. package/dist-cjs/endpoint/ruleset.js +7 -0
  37. package/dist-cjs/extensionConfiguration.js +2 -0
  38. package/dist-cjs/index.js +11 -0
  39. package/dist-cjs/models/S3TablesServiceException.js +12 -0
  40. package/dist-cjs/models/index.js +4 -0
  41. package/dist-cjs/models/models_0.js +142 -0
  42. package/dist-cjs/pagination/Interfaces.js +2 -0
  43. package/dist-cjs/pagination/ListNamespacesPaginator.js +7 -0
  44. package/dist-cjs/pagination/ListTableBucketsPaginator.js +7 -0
  45. package/dist-cjs/pagination/ListTablesPaginator.js +7 -0
  46. package/dist-cjs/pagination/index.js +7 -0
  47. package/dist-cjs/protocols/Aws_restJson1.js +954 -0
  48. package/dist-cjs/runtimeConfig.browser.js +39 -0
  49. package/dist-cjs/runtimeConfig.js +50 -0
  50. package/dist-cjs/runtimeConfig.native.js +15 -0
  51. package/dist-cjs/runtimeConfig.shared.js +34 -0
  52. package/dist-cjs/runtimeExtensions.js +25 -0
  53. package/dist-es/S3Tables.js +59 -0
  54. package/dist-es/S3TablesClient.js +46 -0
  55. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  56. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  57. package/dist-es/commands/CreateNamespaceCommand.js +22 -0
  58. package/dist-es/commands/CreateTableBucketCommand.js +22 -0
  59. package/dist-es/commands/CreateTableCommand.js +22 -0
  60. package/dist-es/commands/DeleteNamespaceCommand.js +22 -0
  61. package/dist-es/commands/DeleteTableBucketCommand.js +22 -0
  62. package/dist-es/commands/DeleteTableBucketPolicyCommand.js +22 -0
  63. package/dist-es/commands/DeleteTableCommand.js +22 -0
  64. package/dist-es/commands/DeleteTablePolicyCommand.js +22 -0
  65. package/dist-es/commands/GetNamespaceCommand.js +22 -0
  66. package/dist-es/commands/GetTableBucketCommand.js +22 -0
  67. package/dist-es/commands/GetTableBucketMaintenanceConfigurationCommand.js +22 -0
  68. package/dist-es/commands/GetTableBucketPolicyCommand.js +22 -0
  69. package/dist-es/commands/GetTableCommand.js +22 -0
  70. package/dist-es/commands/GetTableMaintenanceConfigurationCommand.js +22 -0
  71. package/dist-es/commands/GetTableMaintenanceJobStatusCommand.js +22 -0
  72. package/dist-es/commands/GetTableMetadataLocationCommand.js +22 -0
  73. package/dist-es/commands/GetTablePolicyCommand.js +22 -0
  74. package/dist-es/commands/ListNamespacesCommand.js +22 -0
  75. package/dist-es/commands/ListTableBucketsCommand.js +22 -0
  76. package/dist-es/commands/ListTablesCommand.js +22 -0
  77. package/dist-es/commands/PutTableBucketMaintenanceConfigurationCommand.js +22 -0
  78. package/dist-es/commands/PutTableBucketPolicyCommand.js +22 -0
  79. package/dist-es/commands/PutTableMaintenanceConfigurationCommand.js +22 -0
  80. package/dist-es/commands/PutTablePolicyCommand.js +22 -0
  81. package/dist-es/commands/RenameTableCommand.js +22 -0
  82. package/dist-es/commands/UpdateTableMetadataLocationCommand.js +22 -0
  83. package/dist-es/commands/index.js +26 -0
  84. package/dist-es/endpoint/EndpointParameters.js +14 -0
  85. package/dist-es/endpoint/endpointResolver.js +14 -0
  86. package/dist-es/endpoint/ruleset.js +4 -0
  87. package/dist-es/extensionConfiguration.js +1 -0
  88. package/dist-es/index.js +6 -0
  89. package/dist-es/models/S3TablesServiceException.js +8 -0
  90. package/dist-es/models/index.js +1 -0
  91. package/dist-es/models/models_0.js +132 -0
  92. package/dist-es/pagination/Interfaces.js +1 -0
  93. package/dist-es/pagination/ListNamespacesPaginator.js +4 -0
  94. package/dist-es/pagination/ListTableBucketsPaginator.js +4 -0
  95. package/dist-es/pagination/ListTablesPaginator.js +4 -0
  96. package/dist-es/pagination/index.js +4 -0
  97. package/dist-es/protocols/Aws_restJson1.js +898 -0
  98. package/dist-es/runtimeConfig.browser.js +34 -0
  99. package/dist-es/runtimeConfig.js +45 -0
  100. package/dist-es/runtimeConfig.native.js +11 -0
  101. package/dist-es/runtimeConfig.shared.js +30 -0
  102. package/dist-es/runtimeExtensions.js +21 -0
  103. package/dist-types/S3Tables.d.ts +193 -0
  104. package/dist-types/S3TablesClient.d.ts +195 -0
  105. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  106. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  107. package/dist-types/commands/CreateNamespaceCommand.d.ts +96 -0
  108. package/dist-types/commands/CreateTableBucketCommand.d.ts +90 -0
  109. package/dist-types/commands/CreateTableCommand.d.ts +94 -0
  110. package/dist-types/commands/DeleteNamespaceCommand.d.ts +89 -0
  111. package/dist-types/commands/DeleteTableBucketCommand.d.ts +88 -0
  112. package/dist-types/commands/DeleteTableBucketPolicyCommand.d.ts +88 -0
  113. package/dist-types/commands/DeleteTableCommand.d.ts +91 -0
  114. package/dist-types/commands/DeleteTablePolicyCommand.d.ts +90 -0
  115. package/dist-types/commands/GetNamespaceCommand.d.ts +99 -0
  116. package/dist-types/commands/GetTableBucketCommand.d.ts +96 -0
  117. package/dist-types/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +101 -0
  118. package/dist-types/commands/GetTableBucketPolicyCommand.d.ts +90 -0
  119. package/dist-types/commands/GetTableCommand.d.ts +110 -0
  120. package/dist-types/commands/GetTableMaintenanceConfigurationCommand.d.ts +106 -0
  121. package/dist-types/commands/GetTableMaintenanceJobStatusCommand.d.ts +99 -0
  122. package/dist-types/commands/GetTableMetadataLocationCommand.d.ts +94 -0
  123. package/dist-types/commands/GetTablePolicyCommand.d.ts +92 -0
  124. package/dist-types/commands/ListNamespacesCommand.d.ts +106 -0
  125. package/dist-types/commands/ListTableBucketsCommand.d.ts +103 -0
  126. package/dist-types/commands/ListTablesCommand.d.ts +106 -0
  127. package/dist-types/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +99 -0
  128. package/dist-types/commands/PutTableBucketPolicyCommand.d.ts +90 -0
  129. package/dist-types/commands/PutTableMaintenanceConfigurationCommand.d.ts +104 -0
  130. package/dist-types/commands/PutTablePolicyCommand.d.ts +92 -0
  131. package/dist-types/commands/RenameTableCommand.d.ts +93 -0
  132. package/dist-types/commands/UpdateTableMetadataLocationCommand.d.ts +100 -0
  133. package/dist-types/commands/index.d.ts +26 -0
  134. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  135. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  136. package/dist-types/endpoint/ruleset.d.ts +2 -0
  137. package/dist-types/extensionConfiguration.d.ts +9 -0
  138. package/dist-types/index.d.ts +14 -0
  139. package/dist-types/models/S3TablesServiceException.d.ts +14 -0
  140. package/dist-types/models/index.d.ts +1 -0
  141. package/dist-types/models/models_0.d.ts +1280 -0
  142. package/dist-types/pagination/Interfaces.d.ts +8 -0
  143. package/dist-types/pagination/ListNamespacesPaginator.d.ts +7 -0
  144. package/dist-types/pagination/ListTableBucketsPaginator.d.ts +7 -0
  145. package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
  146. package/dist-types/pagination/index.d.ts +4 -0
  147. package/dist-types/protocols/Aws_restJson1.d.ts +236 -0
  148. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  149. package/dist-types/runtimeConfig.d.ts +48 -0
  150. package/dist-types/runtimeConfig.native.d.ts +47 -0
  151. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  152. package/dist-types/runtimeExtensions.d.ts +17 -0
  153. package/dist-types/ts3.4/S3Tables.d.ts +460 -0
  154. package/dist-types/ts3.4/S3TablesClient.d.ts +274 -0
  155. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  156. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  157. package/dist-types/ts3.4/commands/CreateNamespaceCommand.d.ts +50 -0
  158. package/dist-types/ts3.4/commands/CreateTableBucketCommand.d.ts +51 -0
  159. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
  160. package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +45 -0
  161. package/dist-types/ts3.4/commands/DeleteTableBucketCommand.d.ts +46 -0
  162. package/dist-types/ts3.4/commands/DeleteTableBucketPolicyCommand.d.ts +47 -0
  163. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +45 -0
  164. package/dist-types/ts3.4/commands/DeleteTablePolicyCommand.d.ts +46 -0
  165. package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +47 -0
  166. package/dist-types/ts3.4/commands/GetTableBucketCommand.d.ts +50 -0
  167. package/dist-types/ts3.4/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/GetTableBucketPolicyCommand.d.ts +51 -0
  169. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +47 -0
  170. package/dist-types/ts3.4/commands/GetTableMaintenanceConfigurationCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/GetTableMaintenanceJobStatusCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/GetTableMetadataLocationCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/GetTablePolicyCommand.d.ts +50 -0
  174. package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +50 -0
  175. package/dist-types/ts3.4/commands/ListTableBucketsCommand.d.ts +50 -0
  176. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
  177. package/dist-types/ts3.4/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +47 -0
  178. package/dist-types/ts3.4/commands/PutTableBucketPolicyCommand.d.ts +46 -0
  179. package/dist-types/ts3.4/commands/PutTableMaintenanceConfigurationCommand.d.ts +47 -0
  180. package/dist-types/ts3.4/commands/PutTablePolicyCommand.d.ts +45 -0
  181. package/dist-types/ts3.4/commands/RenameTableCommand.d.ts +45 -0
  182. package/dist-types/ts3.4/commands/UpdateTableMetadataLocationCommand.d.ts +51 -0
  183. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  184. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  185. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  186. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  187. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  188. package/dist-types/ts3.4/index.d.ts +9 -0
  189. package/dist-types/ts3.4/models/S3TablesServiceException.d.ts +9 -0
  190. package/dist-types/ts3.4/models/index.d.ts +1 -0
  191. package/dist-types/ts3.4/models/models_0.d.ts +399 -0
  192. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  193. package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +11 -0
  194. package/dist-types/ts3.4/pagination/ListTableBucketsPaginator.d.ts +11 -0
  195. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
  196. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  197. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -0
  198. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  199. package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  200. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  201. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  202. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  203. package/package.json +101 -0
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteTablePolicyRequest } from "../models/models_0";
4
+ import {
5
+ S3TablesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3TablesClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteTablePolicyCommandInput
12
+ extends DeleteTablePolicyRequest {}
13
+ export interface DeleteTablePolicyCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteTablePolicyCommand_base: {
15
+ new (
16
+ input: DeleteTablePolicyCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteTablePolicyCommandInput,
19
+ DeleteTablePolicyCommandOutput,
20
+ S3TablesClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: DeleteTablePolicyCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteTablePolicyCommandInput,
28
+ DeleteTablePolicyCommandOutput,
29
+ S3TablesClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteTablePolicyCommand extends DeleteTablePolicyCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeleteTablePolicyRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeleteTablePolicyCommandInput;
43
+ output: DeleteTablePolicyCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0";
4
+ import {
5
+ S3TablesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3TablesClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetNamespaceCommandInput extends GetNamespaceRequest {}
12
+ export interface GetNamespaceCommandOutput
13
+ extends GetNamespaceResponse,
14
+ __MetadataBearer {}
15
+ declare const GetNamespaceCommand_base: {
16
+ new (
17
+ input: GetNamespaceCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetNamespaceCommandInput,
20
+ GetNamespaceCommandOutput,
21
+ S3TablesClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetNamespaceCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetNamespaceCommandInput,
29
+ GetNamespaceCommandOutput,
30
+ S3TablesClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetNamespaceCommand extends GetNamespaceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetNamespaceRequest;
40
+ output: GetNamespaceResponse;
41
+ };
42
+ sdk: {
43
+ input: GetNamespaceCommandInput;
44
+ output: GetNamespaceCommandOutput;
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
+ GetTableBucketRequest,
5
+ GetTableBucketResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableBucketCommandInput extends GetTableBucketRequest {}
15
+ export interface GetTableBucketCommandOutput
16
+ extends GetTableBucketResponse,
17
+ __MetadataBearer {}
18
+ declare const GetTableBucketCommand_base: {
19
+ new (
20
+ input: GetTableBucketCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetTableBucketCommandInput,
23
+ GetTableBucketCommandOutput,
24
+ S3TablesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetTableBucketCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetTableBucketCommandInput,
32
+ GetTableBucketCommandOutput,
33
+ S3TablesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetTableBucketCommand extends GetTableBucketCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetTableBucketRequest;
43
+ output: GetTableBucketResponse;
44
+ };
45
+ sdk: {
46
+ input: GetTableBucketCommandInput;
47
+ output: GetTableBucketCommandOutput;
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
+ GetTableBucketMaintenanceConfigurationRequest,
5
+ GetTableBucketMaintenanceConfigurationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableBucketMaintenanceConfigurationCommandInput
15
+ extends GetTableBucketMaintenanceConfigurationRequest {}
16
+ export interface GetTableBucketMaintenanceConfigurationCommandOutput
17
+ extends GetTableBucketMaintenanceConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTableBucketMaintenanceConfigurationCommand_base: {
20
+ new (
21
+ input: GetTableBucketMaintenanceConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTableBucketMaintenanceConfigurationCommandInput,
24
+ GetTableBucketMaintenanceConfigurationCommandOutput,
25
+ S3TablesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTableBucketMaintenanceConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTableBucketMaintenanceConfigurationCommandInput,
33
+ GetTableBucketMaintenanceConfigurationCommandOutput,
34
+ S3TablesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTableBucketMaintenanceConfigurationCommand extends GetTableBucketMaintenanceConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTableBucketMaintenanceConfigurationRequest;
44
+ output: GetTableBucketMaintenanceConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTableBucketMaintenanceConfigurationCommandInput;
48
+ output: GetTableBucketMaintenanceConfigurationCommandOutput;
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
+ GetTableBucketPolicyRequest,
5
+ GetTableBucketPolicyResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableBucketPolicyCommandInput
15
+ extends GetTableBucketPolicyRequest {}
16
+ export interface GetTableBucketPolicyCommandOutput
17
+ extends GetTableBucketPolicyResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTableBucketPolicyCommand_base: {
20
+ new (
21
+ input: GetTableBucketPolicyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTableBucketPolicyCommandInput,
24
+ GetTableBucketPolicyCommandOutput,
25
+ S3TablesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTableBucketPolicyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTableBucketPolicyCommandInput,
33
+ GetTableBucketPolicyCommandOutput,
34
+ S3TablesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTableBucketPolicyCommand extends GetTableBucketPolicyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTableBucketPolicyRequest;
44
+ output: GetTableBucketPolicyResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTableBucketPolicyCommandInput;
48
+ output: GetTableBucketPolicyCommandOutput;
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 { GetTableRequest, GetTableResponse } from "../models/models_0";
4
+ import {
5
+ S3TablesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3TablesClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetTableCommandInput extends GetTableRequest {}
12
+ export interface GetTableCommandOutput
13
+ extends GetTableResponse,
14
+ __MetadataBearer {}
15
+ declare const GetTableCommand_base: {
16
+ new (
17
+ input: GetTableCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetTableCommandInput,
20
+ GetTableCommandOutput,
21
+ S3TablesClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetTableCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetTableCommandInput,
29
+ GetTableCommandOutput,
30
+ S3TablesClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetTableCommand extends GetTableCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetTableRequest;
40
+ output: GetTableResponse;
41
+ };
42
+ sdk: {
43
+ input: GetTableCommandInput;
44
+ output: GetTableCommandOutput;
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
+ GetTableMaintenanceConfigurationRequest,
5
+ GetTableMaintenanceConfigurationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableMaintenanceConfigurationCommandInput
15
+ extends GetTableMaintenanceConfigurationRequest {}
16
+ export interface GetTableMaintenanceConfigurationCommandOutput
17
+ extends GetTableMaintenanceConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTableMaintenanceConfigurationCommand_base: {
20
+ new (
21
+ input: GetTableMaintenanceConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTableMaintenanceConfigurationCommandInput,
24
+ GetTableMaintenanceConfigurationCommandOutput,
25
+ S3TablesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTableMaintenanceConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTableMaintenanceConfigurationCommandInput,
33
+ GetTableMaintenanceConfigurationCommandOutput,
34
+ S3TablesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTableMaintenanceConfigurationCommand extends GetTableMaintenanceConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTableMaintenanceConfigurationRequest;
44
+ output: GetTableMaintenanceConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTableMaintenanceConfigurationCommandInput;
48
+ output: GetTableMaintenanceConfigurationCommandOutput;
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
+ GetTableMaintenanceJobStatusRequest,
5
+ GetTableMaintenanceJobStatusResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableMaintenanceJobStatusCommandInput
15
+ extends GetTableMaintenanceJobStatusRequest {}
16
+ export interface GetTableMaintenanceJobStatusCommandOutput
17
+ extends GetTableMaintenanceJobStatusResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTableMaintenanceJobStatusCommand_base: {
20
+ new (
21
+ input: GetTableMaintenanceJobStatusCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTableMaintenanceJobStatusCommandInput,
24
+ GetTableMaintenanceJobStatusCommandOutput,
25
+ S3TablesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTableMaintenanceJobStatusCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTableMaintenanceJobStatusCommandInput,
33
+ GetTableMaintenanceJobStatusCommandOutput,
34
+ S3TablesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTableMaintenanceJobStatusCommand extends GetTableMaintenanceJobStatusCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTableMaintenanceJobStatusRequest;
44
+ output: GetTableMaintenanceJobStatusResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTableMaintenanceJobStatusCommandInput;
48
+ output: GetTableMaintenanceJobStatusCommandOutput;
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
+ GetTableMetadataLocationRequest,
5
+ GetTableMetadataLocationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableMetadataLocationCommandInput
15
+ extends GetTableMetadataLocationRequest {}
16
+ export interface GetTableMetadataLocationCommandOutput
17
+ extends GetTableMetadataLocationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTableMetadataLocationCommand_base: {
20
+ new (
21
+ input: GetTableMetadataLocationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTableMetadataLocationCommandInput,
24
+ GetTableMetadataLocationCommandOutput,
25
+ S3TablesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTableMetadataLocationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTableMetadataLocationCommandInput,
33
+ GetTableMetadataLocationCommandOutput,
34
+ S3TablesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTableMetadataLocationCommand extends GetTableMetadataLocationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTableMetadataLocationRequest;
44
+ output: GetTableMetadataLocationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTableMetadataLocationCommandInput;
48
+ output: GetTableMetadataLocationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetTablePolicyRequest,
5
+ GetTablePolicyResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTablePolicyCommandInput extends GetTablePolicyRequest {}
15
+ export interface GetTablePolicyCommandOutput
16
+ extends GetTablePolicyResponse,
17
+ __MetadataBearer {}
18
+ declare const GetTablePolicyCommand_base: {
19
+ new (
20
+ input: GetTablePolicyCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetTablePolicyCommandInput,
23
+ GetTablePolicyCommandOutput,
24
+ S3TablesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetTablePolicyCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetTablePolicyCommandInput,
32
+ GetTablePolicyCommandOutput,
33
+ S3TablesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetTablePolicyCommand extends GetTablePolicyCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetTablePolicyRequest;
43
+ output: GetTablePolicyResponse;
44
+ };
45
+ sdk: {
46
+ input: GetTablePolicyCommandInput;
47
+ output: GetTablePolicyCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListNamespacesRequest,
5
+ ListNamespacesResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListNamespacesCommandInput extends ListNamespacesRequest {}
15
+ export interface ListNamespacesCommandOutput
16
+ extends ListNamespacesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListNamespacesCommand_base: {
19
+ new (
20
+ input: ListNamespacesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListNamespacesCommandInput,
23
+ ListNamespacesCommandOutput,
24
+ S3TablesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListNamespacesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListNamespacesCommandInput,
32
+ ListNamespacesCommandOutput,
33
+ S3TablesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListNamespacesCommand extends ListNamespacesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListNamespacesRequest;
43
+ output: ListNamespacesResponse;
44
+ };
45
+ sdk: {
46
+ input: ListNamespacesCommandInput;
47
+ output: ListNamespacesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTableBucketsRequest,
5
+ ListTableBucketsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTableBucketsCommandInput extends ListTableBucketsRequest {}
15
+ export interface ListTableBucketsCommandOutput
16
+ extends ListTableBucketsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListTableBucketsCommand_base: {
19
+ new (
20
+ input: ListTableBucketsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTableBucketsCommandInput,
23
+ ListTableBucketsCommandOutput,
24
+ S3TablesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListTableBucketsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListTableBucketsCommandInput,
32
+ ListTableBucketsCommandOutput,
33
+ S3TablesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListTableBucketsCommand extends ListTableBucketsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListTableBucketsRequest;
43
+ output: ListTableBucketsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListTableBucketsCommandInput;
47
+ output: ListTableBucketsCommandOutput;
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 { ListTablesRequest, ListTablesResponse } from "../models/models_0";
4
+ import {
5
+ S3TablesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3TablesClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListTablesCommandInput extends ListTablesRequest {}
12
+ export interface ListTablesCommandOutput
13
+ extends ListTablesResponse,
14
+ __MetadataBearer {}
15
+ declare const ListTablesCommand_base: {
16
+ new (
17
+ input: ListTablesCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListTablesCommandInput,
20
+ ListTablesCommandOutput,
21
+ S3TablesClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: ListTablesCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListTablesCommandInput,
29
+ ListTablesCommandOutput,
30
+ S3TablesClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListTablesCommand extends ListTablesCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListTablesRequest;
40
+ output: ListTablesResponse;
41
+ };
42
+ sdk: {
43
+ input: ListTablesCommandInput;
44
+ output: ListTablesCommandOutput;
45
+ };
46
+ };
47
+ }