@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.
- package/LICENSE +201 -0
- package/README.md +413 -0
- package/dist-cjs/S3Tables.js +63 -0
- package/dist-cjs/S3TablesClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateNamespaceCommand.js +26 -0
- package/dist-cjs/commands/CreateTableBucketCommand.js +26 -0
- package/dist-cjs/commands/CreateTableCommand.js +26 -0
- package/dist-cjs/commands/DeleteNamespaceCommand.js +26 -0
- package/dist-cjs/commands/DeleteTableBucketCommand.js +26 -0
- package/dist-cjs/commands/DeleteTableBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/DeleteTableCommand.js +26 -0
- package/dist-cjs/commands/DeleteTablePolicyCommand.js +26 -0
- package/dist-cjs/commands/GetNamespaceCommand.js +26 -0
- package/dist-cjs/commands/GetTableBucketCommand.js +26 -0
- package/dist-cjs/commands/GetTableBucketMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/GetTableBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/GetTableCommand.js +26 -0
- package/dist-cjs/commands/GetTableMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/GetTableMaintenanceJobStatusCommand.js +26 -0
- package/dist-cjs/commands/GetTableMetadataLocationCommand.js +26 -0
- package/dist-cjs/commands/GetTablePolicyCommand.js +26 -0
- package/dist-cjs/commands/ListNamespacesCommand.js +26 -0
- package/dist-cjs/commands/ListTableBucketsCommand.js +26 -0
- package/dist-cjs/commands/ListTablesCommand.js +26 -0
- package/dist-cjs/commands/PutTableBucketMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/PutTableBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/PutTableMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/PutTablePolicyCommand.js +26 -0
- package/dist-cjs/commands/RenameTableCommand.js +26 -0
- package/dist-cjs/commands/UpdateTableMetadataLocationCommand.js +26 -0
- package/dist-cjs/commands/index.js +29 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -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/S3TablesServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +142 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListNamespacesPaginator.js +7 -0
- package/dist-cjs/pagination/ListTableBucketsPaginator.js +7 -0
- package/dist-cjs/pagination/ListTablesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +954 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/S3Tables.js +59 -0
- package/dist-es/S3TablesClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateNamespaceCommand.js +22 -0
- package/dist-es/commands/CreateTableBucketCommand.js +22 -0
- package/dist-es/commands/CreateTableCommand.js +22 -0
- package/dist-es/commands/DeleteNamespaceCommand.js +22 -0
- package/dist-es/commands/DeleteTableBucketCommand.js +22 -0
- package/dist-es/commands/DeleteTableBucketPolicyCommand.js +22 -0
- package/dist-es/commands/DeleteTableCommand.js +22 -0
- package/dist-es/commands/DeleteTablePolicyCommand.js +22 -0
- package/dist-es/commands/GetNamespaceCommand.js +22 -0
- package/dist-es/commands/GetTableBucketCommand.js +22 -0
- package/dist-es/commands/GetTableBucketMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/GetTableBucketPolicyCommand.js +22 -0
- package/dist-es/commands/GetTableCommand.js +22 -0
- package/dist-es/commands/GetTableMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/GetTableMaintenanceJobStatusCommand.js +22 -0
- package/dist-es/commands/GetTableMetadataLocationCommand.js +22 -0
- package/dist-es/commands/GetTablePolicyCommand.js +22 -0
- package/dist-es/commands/ListNamespacesCommand.js +22 -0
- package/dist-es/commands/ListTableBucketsCommand.js +22 -0
- package/dist-es/commands/ListTablesCommand.js +22 -0
- package/dist-es/commands/PutTableBucketMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/PutTableBucketPolicyCommand.js +22 -0
- package/dist-es/commands/PutTableMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/PutTablePolicyCommand.js +22 -0
- package/dist-es/commands/RenameTableCommand.js +22 -0
- package/dist-es/commands/UpdateTableMetadataLocationCommand.js +22 -0
- package/dist-es/commands/index.js +26 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -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/S3TablesServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +132 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListNamespacesPaginator.js +4 -0
- package/dist-es/pagination/ListTableBucketsPaginator.js +4 -0
- package/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +898 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/S3Tables.d.ts +193 -0
- package/dist-types/S3TablesClient.d.ts +195 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateNamespaceCommand.d.ts +96 -0
- package/dist-types/commands/CreateTableBucketCommand.d.ts +90 -0
- package/dist-types/commands/CreateTableCommand.d.ts +94 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +89 -0
- package/dist-types/commands/DeleteTableBucketCommand.d.ts +88 -0
- package/dist-types/commands/DeleteTableBucketPolicyCommand.d.ts +88 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +91 -0
- package/dist-types/commands/DeleteTablePolicyCommand.d.ts +90 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +99 -0
- package/dist-types/commands/GetTableBucketCommand.d.ts +96 -0
- package/dist-types/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +101 -0
- package/dist-types/commands/GetTableBucketPolicyCommand.d.ts +90 -0
- package/dist-types/commands/GetTableCommand.d.ts +110 -0
- package/dist-types/commands/GetTableMaintenanceConfigurationCommand.d.ts +106 -0
- package/dist-types/commands/GetTableMaintenanceJobStatusCommand.d.ts +99 -0
- package/dist-types/commands/GetTableMetadataLocationCommand.d.ts +94 -0
- package/dist-types/commands/GetTablePolicyCommand.d.ts +92 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +106 -0
- package/dist-types/commands/ListTableBucketsCommand.d.ts +103 -0
- package/dist-types/commands/ListTablesCommand.d.ts +106 -0
- package/dist-types/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +99 -0
- package/dist-types/commands/PutTableBucketPolicyCommand.d.ts +90 -0
- package/dist-types/commands/PutTableMaintenanceConfigurationCommand.d.ts +104 -0
- package/dist-types/commands/PutTablePolicyCommand.d.ts +92 -0
- package/dist-types/commands/RenameTableCommand.d.ts +93 -0
- package/dist-types/commands/UpdateTableMetadataLocationCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +26 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -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/S3TablesServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1280 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTableBucketsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +236 -0
- package/dist-types/runtimeConfig.browser.d.ts +48 -0
- package/dist-types/runtimeConfig.d.ts +48 -0
- package/dist-types/runtimeConfig.native.d.ts +47 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/S3Tables.d.ts +460 -0
- package/dist-types/ts3.4/S3TablesClient.d.ts +274 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateNamespaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateTableBucketCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteTablePolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTableBucketCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableBucketPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTableMaintenanceConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableMaintenanceJobStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableMetadataLocationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTablePolicyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTableBucketsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableBucketPolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/PutTableMaintenanceConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTablePolicyCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/RenameTableCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateTableMetadataLocationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -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/S3TablesServiceException.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 +399 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTableBucketsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTablesPaginator.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 +317 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -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 +101 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
CreateNamespaceCommandInput,
|
|
50
|
+
CreateNamespaceCommandOutput,
|
|
51
|
+
} from "./commands/CreateNamespaceCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateTableBucketCommandInput,
|
|
54
|
+
CreateTableBucketCommandOutput,
|
|
55
|
+
} from "./commands/CreateTableBucketCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateTableCommandInput,
|
|
58
|
+
CreateTableCommandOutput,
|
|
59
|
+
} from "./commands/CreateTableCommand";
|
|
60
|
+
import {
|
|
61
|
+
DeleteNamespaceCommandInput,
|
|
62
|
+
DeleteNamespaceCommandOutput,
|
|
63
|
+
} from "./commands/DeleteNamespaceCommand";
|
|
64
|
+
import {
|
|
65
|
+
DeleteTableBucketCommandInput,
|
|
66
|
+
DeleteTableBucketCommandOutput,
|
|
67
|
+
} from "./commands/DeleteTableBucketCommand";
|
|
68
|
+
import {
|
|
69
|
+
DeleteTableBucketPolicyCommandInput,
|
|
70
|
+
DeleteTableBucketPolicyCommandOutput,
|
|
71
|
+
} from "./commands/DeleteTableBucketPolicyCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteTableCommandInput,
|
|
74
|
+
DeleteTableCommandOutput,
|
|
75
|
+
} from "./commands/DeleteTableCommand";
|
|
76
|
+
import {
|
|
77
|
+
DeleteTablePolicyCommandInput,
|
|
78
|
+
DeleteTablePolicyCommandOutput,
|
|
79
|
+
} from "./commands/DeleteTablePolicyCommand";
|
|
80
|
+
import {
|
|
81
|
+
GetNamespaceCommandInput,
|
|
82
|
+
GetNamespaceCommandOutput,
|
|
83
|
+
} from "./commands/GetNamespaceCommand";
|
|
84
|
+
import {
|
|
85
|
+
GetTableBucketCommandInput,
|
|
86
|
+
GetTableBucketCommandOutput,
|
|
87
|
+
} from "./commands/GetTableBucketCommand";
|
|
88
|
+
import {
|
|
89
|
+
GetTableBucketMaintenanceConfigurationCommandInput,
|
|
90
|
+
GetTableBucketMaintenanceConfigurationCommandOutput,
|
|
91
|
+
} from "./commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetTableBucketPolicyCommandInput,
|
|
94
|
+
GetTableBucketPolicyCommandOutput,
|
|
95
|
+
} from "./commands/GetTableBucketPolicyCommand";
|
|
96
|
+
import {
|
|
97
|
+
GetTableCommandInput,
|
|
98
|
+
GetTableCommandOutput,
|
|
99
|
+
} from "./commands/GetTableCommand";
|
|
100
|
+
import {
|
|
101
|
+
GetTableMaintenanceConfigurationCommandInput,
|
|
102
|
+
GetTableMaintenanceConfigurationCommandOutput,
|
|
103
|
+
} from "./commands/GetTableMaintenanceConfigurationCommand";
|
|
104
|
+
import {
|
|
105
|
+
GetTableMaintenanceJobStatusCommandInput,
|
|
106
|
+
GetTableMaintenanceJobStatusCommandOutput,
|
|
107
|
+
} from "./commands/GetTableMaintenanceJobStatusCommand";
|
|
108
|
+
import {
|
|
109
|
+
GetTableMetadataLocationCommandInput,
|
|
110
|
+
GetTableMetadataLocationCommandOutput,
|
|
111
|
+
} from "./commands/GetTableMetadataLocationCommand";
|
|
112
|
+
import {
|
|
113
|
+
GetTablePolicyCommandInput,
|
|
114
|
+
GetTablePolicyCommandOutput,
|
|
115
|
+
} from "./commands/GetTablePolicyCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListNamespacesCommandInput,
|
|
118
|
+
ListNamespacesCommandOutput,
|
|
119
|
+
} from "./commands/ListNamespacesCommand";
|
|
120
|
+
import {
|
|
121
|
+
ListTableBucketsCommandInput,
|
|
122
|
+
ListTableBucketsCommandOutput,
|
|
123
|
+
} from "./commands/ListTableBucketsCommand";
|
|
124
|
+
import {
|
|
125
|
+
ListTablesCommandInput,
|
|
126
|
+
ListTablesCommandOutput,
|
|
127
|
+
} from "./commands/ListTablesCommand";
|
|
128
|
+
import {
|
|
129
|
+
PutTableBucketMaintenanceConfigurationCommandInput,
|
|
130
|
+
PutTableBucketMaintenanceConfigurationCommandOutput,
|
|
131
|
+
} from "./commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
132
|
+
import {
|
|
133
|
+
PutTableBucketPolicyCommandInput,
|
|
134
|
+
PutTableBucketPolicyCommandOutput,
|
|
135
|
+
} from "./commands/PutTableBucketPolicyCommand";
|
|
136
|
+
import {
|
|
137
|
+
PutTableMaintenanceConfigurationCommandInput,
|
|
138
|
+
PutTableMaintenanceConfigurationCommandOutput,
|
|
139
|
+
} from "./commands/PutTableMaintenanceConfigurationCommand";
|
|
140
|
+
import {
|
|
141
|
+
PutTablePolicyCommandInput,
|
|
142
|
+
PutTablePolicyCommandOutput,
|
|
143
|
+
} from "./commands/PutTablePolicyCommand";
|
|
144
|
+
import {
|
|
145
|
+
RenameTableCommandInput,
|
|
146
|
+
RenameTableCommandOutput,
|
|
147
|
+
} from "./commands/RenameTableCommand";
|
|
148
|
+
import {
|
|
149
|
+
UpdateTableMetadataLocationCommandInput,
|
|
150
|
+
UpdateTableMetadataLocationCommandOutput,
|
|
151
|
+
} from "./commands/UpdateTableMetadataLocationCommand";
|
|
152
|
+
import {
|
|
153
|
+
ClientInputEndpointParameters,
|
|
154
|
+
ClientResolvedEndpointParameters,
|
|
155
|
+
EndpointParameters,
|
|
156
|
+
} from "./endpoint/EndpointParameters";
|
|
157
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
158
|
+
export { __Client };
|
|
159
|
+
export type ServiceInputTypes =
|
|
160
|
+
| CreateNamespaceCommandInput
|
|
161
|
+
| CreateTableBucketCommandInput
|
|
162
|
+
| CreateTableCommandInput
|
|
163
|
+
| DeleteNamespaceCommandInput
|
|
164
|
+
| DeleteTableBucketCommandInput
|
|
165
|
+
| DeleteTableBucketPolicyCommandInput
|
|
166
|
+
| DeleteTableCommandInput
|
|
167
|
+
| DeleteTablePolicyCommandInput
|
|
168
|
+
| GetNamespaceCommandInput
|
|
169
|
+
| GetTableBucketCommandInput
|
|
170
|
+
| GetTableBucketMaintenanceConfigurationCommandInput
|
|
171
|
+
| GetTableBucketPolicyCommandInput
|
|
172
|
+
| GetTableCommandInput
|
|
173
|
+
| GetTableMaintenanceConfigurationCommandInput
|
|
174
|
+
| GetTableMaintenanceJobStatusCommandInput
|
|
175
|
+
| GetTableMetadataLocationCommandInput
|
|
176
|
+
| GetTablePolicyCommandInput
|
|
177
|
+
| ListNamespacesCommandInput
|
|
178
|
+
| ListTableBucketsCommandInput
|
|
179
|
+
| ListTablesCommandInput
|
|
180
|
+
| PutTableBucketMaintenanceConfigurationCommandInput
|
|
181
|
+
| PutTableBucketPolicyCommandInput
|
|
182
|
+
| PutTableMaintenanceConfigurationCommandInput
|
|
183
|
+
| PutTablePolicyCommandInput
|
|
184
|
+
| RenameTableCommandInput
|
|
185
|
+
| UpdateTableMetadataLocationCommandInput;
|
|
186
|
+
export type ServiceOutputTypes =
|
|
187
|
+
| CreateNamespaceCommandOutput
|
|
188
|
+
| CreateTableBucketCommandOutput
|
|
189
|
+
| CreateTableCommandOutput
|
|
190
|
+
| DeleteNamespaceCommandOutput
|
|
191
|
+
| DeleteTableBucketCommandOutput
|
|
192
|
+
| DeleteTableBucketPolicyCommandOutput
|
|
193
|
+
| DeleteTableCommandOutput
|
|
194
|
+
| DeleteTablePolicyCommandOutput
|
|
195
|
+
| GetNamespaceCommandOutput
|
|
196
|
+
| GetTableBucketCommandOutput
|
|
197
|
+
| GetTableBucketMaintenanceConfigurationCommandOutput
|
|
198
|
+
| GetTableBucketPolicyCommandOutput
|
|
199
|
+
| GetTableCommandOutput
|
|
200
|
+
| GetTableMaintenanceConfigurationCommandOutput
|
|
201
|
+
| GetTableMaintenanceJobStatusCommandOutput
|
|
202
|
+
| GetTableMetadataLocationCommandOutput
|
|
203
|
+
| GetTablePolicyCommandOutput
|
|
204
|
+
| ListNamespacesCommandOutput
|
|
205
|
+
| ListTableBucketsCommandOutput
|
|
206
|
+
| ListTablesCommandOutput
|
|
207
|
+
| PutTableBucketMaintenanceConfigurationCommandOutput
|
|
208
|
+
| PutTableBucketPolicyCommandOutput
|
|
209
|
+
| PutTableMaintenanceConfigurationCommandOutput
|
|
210
|
+
| PutTablePolicyCommandOutput
|
|
211
|
+
| RenameTableCommandOutput
|
|
212
|
+
| UpdateTableMetadataLocationCommandOutput;
|
|
213
|
+
export interface ClientDefaults
|
|
214
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
215
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
216
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
217
|
+
urlParser?: __UrlParser;
|
|
218
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
219
|
+
streamCollector?: __StreamCollector;
|
|
220
|
+
base64Decoder?: __Decoder;
|
|
221
|
+
base64Encoder?: __Encoder;
|
|
222
|
+
utf8Decoder?: __Decoder;
|
|
223
|
+
utf8Encoder?: __Encoder;
|
|
224
|
+
runtime?: string;
|
|
225
|
+
disableHostPrefix?: boolean;
|
|
226
|
+
serviceId?: string;
|
|
227
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
228
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
229
|
+
region?: string | __Provider<string>;
|
|
230
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
231
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
232
|
+
maxAttempts?: number | __Provider<number>;
|
|
233
|
+
retryMode?: string | __Provider<string>;
|
|
234
|
+
logger?: __Logger;
|
|
235
|
+
extensions?: RuntimeExtension[];
|
|
236
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
237
|
+
}
|
|
238
|
+
export type S3TablesClientConfigType = Partial<
|
|
239
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
240
|
+
> &
|
|
241
|
+
ClientDefaults &
|
|
242
|
+
UserAgentInputConfig &
|
|
243
|
+
RetryInputConfig &
|
|
244
|
+
RegionInputConfig &
|
|
245
|
+
HostHeaderInputConfig &
|
|
246
|
+
EndpointInputConfig<EndpointParameters> &
|
|
247
|
+
HttpAuthSchemeInputConfig &
|
|
248
|
+
ClientInputEndpointParameters;
|
|
249
|
+
export interface S3TablesClientConfig extends S3TablesClientConfigType {}
|
|
250
|
+
export type S3TablesClientResolvedConfigType =
|
|
251
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
252
|
+
Required<ClientDefaults> &
|
|
253
|
+
RuntimeExtensionsConfig &
|
|
254
|
+
UserAgentResolvedConfig &
|
|
255
|
+
RetryResolvedConfig &
|
|
256
|
+
RegionResolvedConfig &
|
|
257
|
+
HostHeaderResolvedConfig &
|
|
258
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
259
|
+
HttpAuthSchemeResolvedConfig &
|
|
260
|
+
ClientResolvedEndpointParameters;
|
|
261
|
+
export interface S3TablesClientResolvedConfig
|
|
262
|
+
extends S3TablesClientResolvedConfigType {}
|
|
263
|
+
export declare class S3TablesClient extends __Client<
|
|
264
|
+
__HttpHandlerOptions,
|
|
265
|
+
ServiceInputTypes,
|
|
266
|
+
ServiceOutputTypes,
|
|
267
|
+
S3TablesClientResolvedConfig
|
|
268
|
+
> {
|
|
269
|
+
readonly config: S3TablesClientResolvedConfig;
|
|
270
|
+
constructor(
|
|
271
|
+
...[configuration]: __CheckOptionalClientConfig<S3TablesClientConfig>
|
|
272
|
+
);
|
|
273
|
+
destroy(): void;
|
|
274
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { S3TablesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: S3TablesHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): S3TablesHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: S3TablesHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
} from "@smithy/types";
|
|
13
|
+
import { S3TablesClientResolvedConfig } from "../S3TablesClient";
|
|
14
|
+
export interface S3TablesHttpAuthSchemeParameters
|
|
15
|
+
extends HttpAuthSchemeParameters {
|
|
16
|
+
region?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface S3TablesHttpAuthSchemeParametersProvider
|
|
19
|
+
extends HttpAuthSchemeParametersProvider<
|
|
20
|
+
S3TablesClientResolvedConfig,
|
|
21
|
+
HandlerExecutionContext,
|
|
22
|
+
S3TablesHttpAuthSchemeParameters,
|
|
23
|
+
object
|
|
24
|
+
> {}
|
|
25
|
+
export declare const defaultS3TablesHttpAuthSchemeParametersProvider: (
|
|
26
|
+
config: S3TablesClientResolvedConfig,
|
|
27
|
+
context: HandlerExecutionContext,
|
|
28
|
+
input: object
|
|
29
|
+
) => Promise<S3TablesHttpAuthSchemeParameters>;
|
|
30
|
+
export interface S3TablesHttpAuthSchemeProvider
|
|
31
|
+
extends HttpAuthSchemeProvider<S3TablesHttpAuthSchemeParameters> {}
|
|
32
|
+
export declare const defaultS3TablesHttpAuthSchemeProvider: S3TablesHttpAuthSchemeProvider;
|
|
33
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
35
|
+
httpAuthSchemeProvider?: S3TablesHttpAuthSchemeProvider;
|
|
36
|
+
}
|
|
37
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
38
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
39
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
40
|
+
readonly httpAuthSchemeProvider: S3TablesHttpAuthSchemeProvider;
|
|
41
|
+
}
|
|
42
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
43
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
44
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateNamespaceRequest,
|
|
5
|
+
CreateNamespaceResponse,
|
|
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 CreateNamespaceCommandInput extends CreateNamespaceRequest {}
|
|
15
|
+
export interface CreateNamespaceCommandOutput
|
|
16
|
+
extends CreateNamespaceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateNamespaceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateNamespaceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateNamespaceCommandInput,
|
|
23
|
+
CreateNamespaceCommandOutput,
|
|
24
|
+
S3TablesClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateNamespaceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateNamespaceCommandInput,
|
|
32
|
+
CreateNamespaceCommandOutput,
|
|
33
|
+
S3TablesClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateNamespaceCommand extends CreateNamespaceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateNamespaceRequest;
|
|
43
|
+
output: CreateNamespaceResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateNamespaceCommandInput;
|
|
47
|
+
output: CreateNamespaceCommandOutput;
|
|
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
|
+
CreateTableBucketRequest,
|
|
5
|
+
CreateTableBucketResponse,
|
|
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 CreateTableBucketCommandInput
|
|
15
|
+
extends CreateTableBucketRequest {}
|
|
16
|
+
export interface CreateTableBucketCommandOutput
|
|
17
|
+
extends CreateTableBucketResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateTableBucketCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateTableBucketCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateTableBucketCommandInput,
|
|
24
|
+
CreateTableBucketCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateTableBucketCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateTableBucketCommandInput,
|
|
33
|
+
CreateTableBucketCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateTableBucketCommand extends CreateTableBucketCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateTableBucketRequest;
|
|
44
|
+
output: CreateTableBucketResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateTableBucketCommandInput;
|
|
48
|
+
output: CreateTableBucketCommandOutput;
|
|
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 { CreateTableRequest, CreateTableResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateTableCommandInput extends CreateTableRequest {}
|
|
12
|
+
export interface CreateTableCommandOutput
|
|
13
|
+
extends CreateTableResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateTableCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateTableCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreateTableCommandInput,
|
|
20
|
+
CreateTableCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: CreateTableCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreateTableCommandInput,
|
|
29
|
+
CreateTableCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreateTableCommand extends CreateTableCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateTableRequest;
|
|
40
|
+
output: CreateTableResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateTableCommandInput;
|
|
44
|
+
output: CreateTableCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteNamespaceRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {}
|
|
12
|
+
export interface DeleteNamespaceCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const DeleteNamespaceCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: DeleteNamespaceCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
DeleteNamespaceCommandInput,
|
|
18
|
+
DeleteNamespaceCommandOutput,
|
|
19
|
+
S3TablesClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteNamespaceCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteNamespaceCommandInput,
|
|
27
|
+
DeleteNamespaceCommandOutput,
|
|
28
|
+
S3TablesClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class DeleteNamespaceCommand extends DeleteNamespaceCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: DeleteNamespaceRequest;
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: DeleteNamespaceCommandInput;
|
|
42
|
+
output: DeleteNamespaceCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteTableBucketRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteTableBucketCommandInput
|
|
12
|
+
extends DeleteTableBucketRequest {}
|
|
13
|
+
export interface DeleteTableBucketCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteTableBucketCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteTableBucketCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteTableBucketCommandInput,
|
|
19
|
+
DeleteTableBucketCommandOutput,
|
|
20
|
+
S3TablesClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteTableBucketCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteTableBucketCommandInput,
|
|
28
|
+
DeleteTableBucketCommandOutput,
|
|
29
|
+
S3TablesClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteTableBucketCommand extends DeleteTableBucketCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteTableBucketRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteTableBucketCommandInput;
|
|
43
|
+
output: DeleteTableBucketCommandOutput;
|
|
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 { DeleteTableBucketPolicyRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteTableBucketPolicyCommandInput
|
|
12
|
+
extends DeleteTableBucketPolicyRequest {}
|
|
13
|
+
export interface DeleteTableBucketPolicyCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteTableBucketPolicyCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteTableBucketPolicyCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteTableBucketPolicyCommandInput,
|
|
20
|
+
DeleteTableBucketPolicyCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: DeleteTableBucketPolicyCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteTableBucketPolicyCommandInput,
|
|
29
|
+
DeleteTableBucketPolicyCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteTableBucketPolicyCommand extends DeleteTableBucketPolicyCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteTableBucketPolicyRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteTableBucketPolicyCommandInput;
|
|
44
|
+
output: DeleteTableBucketPolicyCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteTableRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteTableCommandInput extends DeleteTableRequest {}
|
|
12
|
+
export interface DeleteTableCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const DeleteTableCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: DeleteTableCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
DeleteTableCommandInput,
|
|
18
|
+
DeleteTableCommandOutput,
|
|
19
|
+
S3TablesClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteTableCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteTableCommandInput,
|
|
27
|
+
DeleteTableCommandOutput,
|
|
28
|
+
S3TablesClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class DeleteTableCommand extends DeleteTableCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: DeleteTableRequest;
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: DeleteTableCommandInput;
|
|
42
|
+
output: DeleteTableCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|