@aws-sdk/client-timestream-write 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/TimestreamWrite.d.ts +274 -80
- package/dist-types/ts3.4/TimestreamWriteClient.d.ts +228 -91
- package/dist-types/ts3.4/commands/CreateDatabaseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDatabaseCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeDatabaseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/WriteRecordsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/TimestreamWriteServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +508 -465
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +73 -41
- package/dist-types/ts3.4/runtimeConfig.d.ts +73 -41
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +74 -40
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +35 -35
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-timestream-write
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-timestream-write
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-timestream-write
|
|
@@ -1,80 +1,274 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateDatabaseCommandInput,
|
|
4
|
+
CreateDatabaseCommandOutput,
|
|
5
|
+
} from "./commands/CreateDatabaseCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateTableCommandInput,
|
|
8
|
+
CreateTableCommandOutput,
|
|
9
|
+
} from "./commands/CreateTableCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteDatabaseCommandInput,
|
|
12
|
+
DeleteDatabaseCommandOutput,
|
|
13
|
+
} from "./commands/DeleteDatabaseCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteTableCommandInput,
|
|
16
|
+
DeleteTableCommandOutput,
|
|
17
|
+
} from "./commands/DeleteTableCommand";
|
|
18
|
+
import {
|
|
19
|
+
DescribeDatabaseCommandInput,
|
|
20
|
+
DescribeDatabaseCommandOutput,
|
|
21
|
+
} from "./commands/DescribeDatabaseCommand";
|
|
22
|
+
import {
|
|
23
|
+
DescribeEndpointsCommandInput,
|
|
24
|
+
DescribeEndpointsCommandOutput,
|
|
25
|
+
} from "./commands/DescribeEndpointsCommand";
|
|
26
|
+
import {
|
|
27
|
+
DescribeTableCommandInput,
|
|
28
|
+
DescribeTableCommandOutput,
|
|
29
|
+
} from "./commands/DescribeTableCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListDatabasesCommandInput,
|
|
32
|
+
ListDatabasesCommandOutput,
|
|
33
|
+
} from "./commands/ListDatabasesCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListTablesCommandInput,
|
|
36
|
+
ListTablesCommandOutput,
|
|
37
|
+
} from "./commands/ListTablesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTagsForResourceCommandInput,
|
|
40
|
+
ListTagsForResourceCommandOutput,
|
|
41
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
TagResourceCommandInput,
|
|
44
|
+
TagResourceCommandOutput,
|
|
45
|
+
} from "./commands/TagResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
UntagResourceCommandInput,
|
|
48
|
+
UntagResourceCommandOutput,
|
|
49
|
+
} from "./commands/UntagResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
UpdateDatabaseCommandInput,
|
|
52
|
+
UpdateDatabaseCommandOutput,
|
|
53
|
+
} from "./commands/UpdateDatabaseCommand";
|
|
54
|
+
import {
|
|
55
|
+
UpdateTableCommandInput,
|
|
56
|
+
UpdateTableCommandOutput,
|
|
57
|
+
} from "./commands/UpdateTableCommand";
|
|
58
|
+
import {
|
|
59
|
+
WriteRecordsCommandInput,
|
|
60
|
+
WriteRecordsCommandOutput,
|
|
61
|
+
} from "./commands/WriteRecordsCommand";
|
|
62
|
+
import { TimestreamWriteClient } from "./TimestreamWriteClient";
|
|
63
|
+
|
|
64
|
+
export declare class TimestreamWrite extends TimestreamWriteClient {
|
|
65
|
+
createDatabase(
|
|
66
|
+
args: CreateDatabaseCommandInput,
|
|
67
|
+
options?: __HttpHandlerOptions
|
|
68
|
+
): Promise<CreateDatabaseCommandOutput>;
|
|
69
|
+
createDatabase(
|
|
70
|
+
args: CreateDatabaseCommandInput,
|
|
71
|
+
cb: (err: any, data?: CreateDatabaseCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
createDatabase(
|
|
74
|
+
args: CreateDatabaseCommandInput,
|
|
75
|
+
options: __HttpHandlerOptions,
|
|
76
|
+
cb: (err: any, data?: CreateDatabaseCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
|
|
79
|
+
createTable(
|
|
80
|
+
args: CreateTableCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<CreateTableCommandOutput>;
|
|
83
|
+
createTable(
|
|
84
|
+
args: CreateTableCommandInput,
|
|
85
|
+
cb: (err: any, data?: CreateTableCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
createTable(
|
|
88
|
+
args: CreateTableCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: CreateTableCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
|
|
93
|
+
deleteDatabase(
|
|
94
|
+
args: DeleteDatabaseCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<DeleteDatabaseCommandOutput>;
|
|
97
|
+
deleteDatabase(
|
|
98
|
+
args: DeleteDatabaseCommandInput,
|
|
99
|
+
cb: (err: any, data?: DeleteDatabaseCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
deleteDatabase(
|
|
102
|
+
args: DeleteDatabaseCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: DeleteDatabaseCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
deleteTable(
|
|
108
|
+
args: DeleteTableCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DeleteTableCommandOutput>;
|
|
111
|
+
deleteTable(
|
|
112
|
+
args: DeleteTableCommandInput,
|
|
113
|
+
cb: (err: any, data?: DeleteTableCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
deleteTable(
|
|
116
|
+
args: DeleteTableCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DeleteTableCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
describeDatabase(
|
|
122
|
+
args: DescribeDatabaseCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<DescribeDatabaseCommandOutput>;
|
|
125
|
+
describeDatabase(
|
|
126
|
+
args: DescribeDatabaseCommandInput,
|
|
127
|
+
cb: (err: any, data?: DescribeDatabaseCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
describeDatabase(
|
|
130
|
+
args: DescribeDatabaseCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: DescribeDatabaseCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
describeEndpoints(
|
|
136
|
+
args: DescribeEndpointsCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<DescribeEndpointsCommandOutput>;
|
|
139
|
+
describeEndpoints(
|
|
140
|
+
args: DescribeEndpointsCommandInput,
|
|
141
|
+
cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
describeEndpoints(
|
|
144
|
+
args: DescribeEndpointsCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
|
|
149
|
+
describeTable(
|
|
150
|
+
args: DescribeTableCommandInput,
|
|
151
|
+
options?: __HttpHandlerOptions
|
|
152
|
+
): Promise<DescribeTableCommandOutput>;
|
|
153
|
+
describeTable(
|
|
154
|
+
args: DescribeTableCommandInput,
|
|
155
|
+
cb: (err: any, data?: DescribeTableCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
describeTable(
|
|
158
|
+
args: DescribeTableCommandInput,
|
|
159
|
+
options: __HttpHandlerOptions,
|
|
160
|
+
cb: (err: any, data?: DescribeTableCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
|
|
163
|
+
listDatabases(
|
|
164
|
+
args: ListDatabasesCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<ListDatabasesCommandOutput>;
|
|
167
|
+
listDatabases(
|
|
168
|
+
args: ListDatabasesCommandInput,
|
|
169
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
listDatabases(
|
|
172
|
+
args: ListDatabasesCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
|
|
177
|
+
listTables(
|
|
178
|
+
args: ListTablesCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<ListTablesCommandOutput>;
|
|
181
|
+
listTables(
|
|
182
|
+
args: ListTablesCommandInput,
|
|
183
|
+
cb: (err: any, data?: ListTablesCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listTables(
|
|
186
|
+
args: ListTablesCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: ListTablesCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
|
|
191
|
+
listTagsForResource(
|
|
192
|
+
args: ListTagsForResourceCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
195
|
+
listTagsForResource(
|
|
196
|
+
args: ListTagsForResourceCommandInput,
|
|
197
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
listTagsForResource(
|
|
200
|
+
args: ListTagsForResourceCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
|
|
205
|
+
tagResource(
|
|
206
|
+
args: TagResourceCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<TagResourceCommandOutput>;
|
|
209
|
+
tagResource(
|
|
210
|
+
args: TagResourceCommandInput,
|
|
211
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
tagResource(
|
|
214
|
+
args: TagResourceCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
|
|
219
|
+
untagResource(
|
|
220
|
+
args: UntagResourceCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<UntagResourceCommandOutput>;
|
|
223
|
+
untagResource(
|
|
224
|
+
args: UntagResourceCommandInput,
|
|
225
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
untagResource(
|
|
228
|
+
args: UntagResourceCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
|
|
233
|
+
updateDatabase(
|
|
234
|
+
args: UpdateDatabaseCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<UpdateDatabaseCommandOutput>;
|
|
237
|
+
updateDatabase(
|
|
238
|
+
args: UpdateDatabaseCommandInput,
|
|
239
|
+
cb: (err: any, data?: UpdateDatabaseCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
updateDatabase(
|
|
242
|
+
args: UpdateDatabaseCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: UpdateDatabaseCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
|
|
247
|
+
updateTable(
|
|
248
|
+
args: UpdateTableCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<UpdateTableCommandOutput>;
|
|
251
|
+
updateTable(
|
|
252
|
+
args: UpdateTableCommandInput,
|
|
253
|
+
cb: (err: any, data?: UpdateTableCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
updateTable(
|
|
256
|
+
args: UpdateTableCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: UpdateTableCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
|
|
261
|
+
writeRecords(
|
|
262
|
+
args: WriteRecordsCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<WriteRecordsCommandOutput>;
|
|
265
|
+
writeRecords(
|
|
266
|
+
args: WriteRecordsCommandInput,
|
|
267
|
+
cb: (err: any, data?: WriteRecordsCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
writeRecords(
|
|
270
|
+
args: WriteRecordsCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: WriteRecordsCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
}
|