@aws-sdk/client-timestream-write 3.278.0 → 3.280.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/README.md +19 -13
- package/dist-cjs/TimestreamWrite.js +60 -0
- package/dist-cjs/commands/CreateBatchLoadTaskCommand.js +48 -0
- package/dist-cjs/commands/DescribeBatchLoadTaskCommand.js +48 -0
- package/dist-cjs/commands/ListBatchLoadTasksCommand.js +48 -0
- package/dist-cjs/commands/ResumeBatchLoadTaskCommand.js +48 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +153 -37
- package/dist-cjs/pagination/ListBatchLoadTasksPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +626 -1
- package/dist-es/TimestreamWrite.js +60 -0
- package/dist-es/commands/CreateBatchLoadTaskCommand.js +44 -0
- package/dist-es/commands/DescribeBatchLoadTaskCommand.js +44 -0
- package/dist-es/commands/ListBatchLoadTasksCommand.js +44 -0
- package/dist-es/commands/ResumeBatchLoadTaskCommand.js +44 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +127 -34
- package/dist-es/pagination/ListBatchLoadTasksPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +617 -0
- package/dist-types/TimestreamWrite.d.ts +154 -131
- package/dist-types/TimestreamWriteClient.d.ts +18 -8
- package/dist-types/commands/CreateBatchLoadTaskCommand.d.ts +45 -0
- package/dist-types/commands/CreateDatabaseCommand.d.ts +3 -6
- package/dist-types/commands/CreateTableCommand.d.ts +6 -9
- package/dist-types/commands/DeleteDatabaseCommand.d.ts +9 -11
- package/dist-types/commands/DeleteTableCommand.d.ts +7 -8
- package/dist-types/commands/DescribeBatchLoadTaskCommand.d.ts +40 -0
- package/dist-types/commands/DescribeDatabaseCommand.d.ts +4 -4
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +10 -8
- package/dist-types/commands/DescribeTableCommand.d.ts +4 -5
- package/dist-types/commands/ListBatchLoadTasksCommand.d.ts +39 -0
- package/dist-types/commands/ListDatabasesCommand.d.ts +3 -4
- package/dist-types/commands/ListTablesCommand.d.ts +3 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -3
- package/dist-types/commands/ResumeBatchLoadTaskCommand.d.ts +38 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -3
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +5 -7
- package/dist-types/commands/UpdateTableCommand.d.ts +6 -8
- package/dist-types/commands/WriteRecordsCommand.d.ts +36 -41
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +786 -274
- package/dist-types/pagination/ListBatchLoadTasksPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +12 -0
- package/dist-types/ts3.4/TimestreamWrite.d.ts +68 -0
- package/dist-types/ts3.4/TimestreamWriteClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateBatchLoadTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeBatchLoadTaskCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListBatchLoadTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ResumeBatchLoadTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +253 -43
- package/dist-types/ts3.4/pagination/ListBatchLoadTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +48 -0
- package/package.json +9 -7
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput } from "../commands/ListBatchLoadTasksCommand";
|
|
3
|
+
import { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListBatchLoadTasks(config: TimestreamWritePaginationConfiguration, input: ListBatchLoadTasksCommandInput, ...additionalArguments: any): Paginator<ListBatchLoadTasksCommandOutput>;
|
|
@@ -1,45 +1,57 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CreateBatchLoadTaskCommandInput, CreateBatchLoadTaskCommandOutput } from "../commands/CreateBatchLoadTaskCommand";
|
|
3
4
|
import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "../commands/CreateDatabaseCommand";
|
|
4
5
|
import { CreateTableCommandInput, CreateTableCommandOutput } from "../commands/CreateTableCommand";
|
|
5
6
|
import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "../commands/DeleteDatabaseCommand";
|
|
6
7
|
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "../commands/DeleteTableCommand";
|
|
8
|
+
import { DescribeBatchLoadTaskCommandInput, DescribeBatchLoadTaskCommandOutput } from "../commands/DescribeBatchLoadTaskCommand";
|
|
7
9
|
import { DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput } from "../commands/DescribeDatabaseCommand";
|
|
8
10
|
import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "../commands/DescribeEndpointsCommand";
|
|
9
11
|
import { DescribeTableCommandInput, DescribeTableCommandOutput } from "../commands/DescribeTableCommand";
|
|
12
|
+
import { ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput } from "../commands/ListBatchLoadTasksCommand";
|
|
10
13
|
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
|
|
11
14
|
import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
|
|
12
15
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
16
|
+
import { ResumeBatchLoadTaskCommandInput, ResumeBatchLoadTaskCommandOutput } from "../commands/ResumeBatchLoadTaskCommand";
|
|
13
17
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
14
18
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
15
19
|
import { UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput } from "../commands/UpdateDatabaseCommand";
|
|
16
20
|
import { UpdateTableCommandInput, UpdateTableCommandOutput } from "../commands/UpdateTableCommand";
|
|
17
21
|
import { WriteRecordsCommandInput, WriteRecordsCommandOutput } from "../commands/WriteRecordsCommand";
|
|
22
|
+
export declare const serializeAws_json1_0CreateBatchLoadTaskCommand: (input: CreateBatchLoadTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
23
|
export declare const serializeAws_json1_0CreateDatabaseCommand: (input: CreateDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
24
|
export declare const serializeAws_json1_0CreateTableCommand: (input: CreateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
25
|
export declare const serializeAws_json1_0DeleteDatabaseCommand: (input: DeleteDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
26
|
export declare const serializeAws_json1_0DeleteTableCommand: (input: DeleteTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_json1_0DescribeBatchLoadTaskCommand: (input: DescribeBatchLoadTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
28
|
export declare const serializeAws_json1_0DescribeDatabaseCommand: (input: DescribeDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
29
|
export declare const serializeAws_json1_0DescribeEndpointsCommand: (input: DescribeEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
30
|
export declare const serializeAws_json1_0DescribeTableCommand: (input: DescribeTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_json1_0ListBatchLoadTasksCommand: (input: ListBatchLoadTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
32
|
export declare const serializeAws_json1_0ListDatabasesCommand: (input: ListDatabasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
33
|
export declare const serializeAws_json1_0ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
34
|
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_json1_0ResumeBatchLoadTaskCommand: (input: ResumeBatchLoadTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
36
|
export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
37
|
export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
38
|
export declare const serializeAws_json1_0UpdateDatabaseCommand: (input: UpdateDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
39
|
export declare const serializeAws_json1_0UpdateTableCommand: (input: UpdateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
40
|
export declare const serializeAws_json1_0WriteRecordsCommand: (input: WriteRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const deserializeAws_json1_0CreateBatchLoadTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBatchLoadTaskCommandOutput>;
|
|
33
42
|
export declare const deserializeAws_json1_0CreateDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatabaseCommandOutput>;
|
|
34
43
|
export declare const deserializeAws_json1_0CreateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTableCommandOutput>;
|
|
35
44
|
export declare const deserializeAws_json1_0DeleteDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatabaseCommandOutput>;
|
|
36
45
|
export declare const deserializeAws_json1_0DeleteTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableCommandOutput>;
|
|
46
|
+
export declare const deserializeAws_json1_0DescribeBatchLoadTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBatchLoadTaskCommandOutput>;
|
|
37
47
|
export declare const deserializeAws_json1_0DescribeDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDatabaseCommandOutput>;
|
|
38
48
|
export declare const deserializeAws_json1_0DescribeEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEndpointsCommandOutput>;
|
|
39
49
|
export declare const deserializeAws_json1_0DescribeTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTableCommandOutput>;
|
|
50
|
+
export declare const deserializeAws_json1_0ListBatchLoadTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBatchLoadTasksCommandOutput>;
|
|
40
51
|
export declare const deserializeAws_json1_0ListDatabasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatabasesCommandOutput>;
|
|
41
52
|
export declare const deserializeAws_json1_0ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
|
|
42
53
|
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_json1_0ResumeBatchLoadTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeBatchLoadTaskCommandOutput>;
|
|
43
55
|
export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
44
56
|
export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
45
57
|
export declare const deserializeAws_json1_0UpdateDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatabaseCommandOutput>;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateBatchLoadTaskCommandInput,
|
|
4
|
+
CreateBatchLoadTaskCommandOutput,
|
|
5
|
+
} from "./commands/CreateBatchLoadTaskCommand";
|
|
2
6
|
import {
|
|
3
7
|
CreateDatabaseCommandInput,
|
|
4
8
|
CreateDatabaseCommandOutput,
|
|
@@ -15,6 +19,10 @@ import {
|
|
|
15
19
|
DeleteTableCommandInput,
|
|
16
20
|
DeleteTableCommandOutput,
|
|
17
21
|
} from "./commands/DeleteTableCommand";
|
|
22
|
+
import {
|
|
23
|
+
DescribeBatchLoadTaskCommandInput,
|
|
24
|
+
DescribeBatchLoadTaskCommandOutput,
|
|
25
|
+
} from "./commands/DescribeBatchLoadTaskCommand";
|
|
18
26
|
import {
|
|
19
27
|
DescribeDatabaseCommandInput,
|
|
20
28
|
DescribeDatabaseCommandOutput,
|
|
@@ -27,6 +35,10 @@ import {
|
|
|
27
35
|
DescribeTableCommandInput,
|
|
28
36
|
DescribeTableCommandOutput,
|
|
29
37
|
} from "./commands/DescribeTableCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListBatchLoadTasksCommandInput,
|
|
40
|
+
ListBatchLoadTasksCommandOutput,
|
|
41
|
+
} from "./commands/ListBatchLoadTasksCommand";
|
|
30
42
|
import {
|
|
31
43
|
ListDatabasesCommandInput,
|
|
32
44
|
ListDatabasesCommandOutput,
|
|
@@ -39,6 +51,10 @@ import {
|
|
|
39
51
|
ListTagsForResourceCommandInput,
|
|
40
52
|
ListTagsForResourceCommandOutput,
|
|
41
53
|
} from "./commands/ListTagsForResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
ResumeBatchLoadTaskCommandInput,
|
|
56
|
+
ResumeBatchLoadTaskCommandOutput,
|
|
57
|
+
} from "./commands/ResumeBatchLoadTaskCommand";
|
|
42
58
|
import {
|
|
43
59
|
TagResourceCommandInput,
|
|
44
60
|
TagResourceCommandOutput,
|
|
@@ -61,6 +77,19 @@ import {
|
|
|
61
77
|
} from "./commands/WriteRecordsCommand";
|
|
62
78
|
import { TimestreamWriteClient } from "./TimestreamWriteClient";
|
|
63
79
|
export declare class TimestreamWrite extends TimestreamWriteClient {
|
|
80
|
+
createBatchLoadTask(
|
|
81
|
+
args: CreateBatchLoadTaskCommandInput,
|
|
82
|
+
options?: __HttpHandlerOptions
|
|
83
|
+
): Promise<CreateBatchLoadTaskCommandOutput>;
|
|
84
|
+
createBatchLoadTask(
|
|
85
|
+
args: CreateBatchLoadTaskCommandInput,
|
|
86
|
+
cb: (err: any, data?: CreateBatchLoadTaskCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
createBatchLoadTask(
|
|
89
|
+
args: CreateBatchLoadTaskCommandInput,
|
|
90
|
+
options: __HttpHandlerOptions,
|
|
91
|
+
cb: (err: any, data?: CreateBatchLoadTaskCommandOutput) => void
|
|
92
|
+
): void;
|
|
64
93
|
createDatabase(
|
|
65
94
|
args: CreateDatabaseCommandInput,
|
|
66
95
|
options?: __HttpHandlerOptions
|
|
@@ -113,6 +142,19 @@ export declare class TimestreamWrite extends TimestreamWriteClient {
|
|
|
113
142
|
options: __HttpHandlerOptions,
|
|
114
143
|
cb: (err: any, data?: DeleteTableCommandOutput) => void
|
|
115
144
|
): void;
|
|
145
|
+
describeBatchLoadTask(
|
|
146
|
+
args: DescribeBatchLoadTaskCommandInput,
|
|
147
|
+
options?: __HttpHandlerOptions
|
|
148
|
+
): Promise<DescribeBatchLoadTaskCommandOutput>;
|
|
149
|
+
describeBatchLoadTask(
|
|
150
|
+
args: DescribeBatchLoadTaskCommandInput,
|
|
151
|
+
cb: (err: any, data?: DescribeBatchLoadTaskCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
describeBatchLoadTask(
|
|
154
|
+
args: DescribeBatchLoadTaskCommandInput,
|
|
155
|
+
options: __HttpHandlerOptions,
|
|
156
|
+
cb: (err: any, data?: DescribeBatchLoadTaskCommandOutput) => void
|
|
157
|
+
): void;
|
|
116
158
|
describeDatabase(
|
|
117
159
|
args: DescribeDatabaseCommandInput,
|
|
118
160
|
options?: __HttpHandlerOptions
|
|
@@ -152,6 +194,19 @@ export declare class TimestreamWrite extends TimestreamWriteClient {
|
|
|
152
194
|
options: __HttpHandlerOptions,
|
|
153
195
|
cb: (err: any, data?: DescribeTableCommandOutput) => void
|
|
154
196
|
): void;
|
|
197
|
+
listBatchLoadTasks(
|
|
198
|
+
args: ListBatchLoadTasksCommandInput,
|
|
199
|
+
options?: __HttpHandlerOptions
|
|
200
|
+
): Promise<ListBatchLoadTasksCommandOutput>;
|
|
201
|
+
listBatchLoadTasks(
|
|
202
|
+
args: ListBatchLoadTasksCommandInput,
|
|
203
|
+
cb: (err: any, data?: ListBatchLoadTasksCommandOutput) => void
|
|
204
|
+
): void;
|
|
205
|
+
listBatchLoadTasks(
|
|
206
|
+
args: ListBatchLoadTasksCommandInput,
|
|
207
|
+
options: __HttpHandlerOptions,
|
|
208
|
+
cb: (err: any, data?: ListBatchLoadTasksCommandOutput) => void
|
|
209
|
+
): void;
|
|
155
210
|
listDatabases(
|
|
156
211
|
args: ListDatabasesCommandInput,
|
|
157
212
|
options?: __HttpHandlerOptions
|
|
@@ -191,6 +246,19 @@ export declare class TimestreamWrite extends TimestreamWriteClient {
|
|
|
191
246
|
options: __HttpHandlerOptions,
|
|
192
247
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
193
248
|
): void;
|
|
249
|
+
resumeBatchLoadTask(
|
|
250
|
+
args: ResumeBatchLoadTaskCommandInput,
|
|
251
|
+
options?: __HttpHandlerOptions
|
|
252
|
+
): Promise<ResumeBatchLoadTaskCommandOutput>;
|
|
253
|
+
resumeBatchLoadTask(
|
|
254
|
+
args: ResumeBatchLoadTaskCommandInput,
|
|
255
|
+
cb: (err: any, data?: ResumeBatchLoadTaskCommandOutput) => void
|
|
256
|
+
): void;
|
|
257
|
+
resumeBatchLoadTask(
|
|
258
|
+
args: ResumeBatchLoadTaskCommandInput,
|
|
259
|
+
options: __HttpHandlerOptions,
|
|
260
|
+
cb: (err: any, data?: ResumeBatchLoadTaskCommandOutput) => void
|
|
261
|
+
): void;
|
|
194
262
|
tagResource(
|
|
195
263
|
args: TagResourceCommandInput,
|
|
196
264
|
options?: __HttpHandlerOptions
|
|
@@ -48,6 +48,10 @@ import {
|
|
|
48
48
|
UrlParser as __UrlParser,
|
|
49
49
|
UserAgent as __UserAgent,
|
|
50
50
|
} from "@aws-sdk/types";
|
|
51
|
+
import {
|
|
52
|
+
CreateBatchLoadTaskCommandInput,
|
|
53
|
+
CreateBatchLoadTaskCommandOutput,
|
|
54
|
+
} from "./commands/CreateBatchLoadTaskCommand";
|
|
51
55
|
import {
|
|
52
56
|
CreateDatabaseCommandInput,
|
|
53
57
|
CreateDatabaseCommandOutput,
|
|
@@ -64,6 +68,10 @@ import {
|
|
|
64
68
|
DeleteTableCommandInput,
|
|
65
69
|
DeleteTableCommandOutput,
|
|
66
70
|
} from "./commands/DeleteTableCommand";
|
|
71
|
+
import {
|
|
72
|
+
DescribeBatchLoadTaskCommandInput,
|
|
73
|
+
DescribeBatchLoadTaskCommandOutput,
|
|
74
|
+
} from "./commands/DescribeBatchLoadTaskCommand";
|
|
67
75
|
import {
|
|
68
76
|
DescribeDatabaseCommandInput,
|
|
69
77
|
DescribeDatabaseCommandOutput,
|
|
@@ -76,6 +84,10 @@ import {
|
|
|
76
84
|
DescribeTableCommandInput,
|
|
77
85
|
DescribeTableCommandOutput,
|
|
78
86
|
} from "./commands/DescribeTableCommand";
|
|
87
|
+
import {
|
|
88
|
+
ListBatchLoadTasksCommandInput,
|
|
89
|
+
ListBatchLoadTasksCommandOutput,
|
|
90
|
+
} from "./commands/ListBatchLoadTasksCommand";
|
|
79
91
|
import {
|
|
80
92
|
ListDatabasesCommandInput,
|
|
81
93
|
ListDatabasesCommandOutput,
|
|
@@ -88,6 +100,10 @@ import {
|
|
|
88
100
|
ListTagsForResourceCommandInput,
|
|
89
101
|
ListTagsForResourceCommandOutput,
|
|
90
102
|
} from "./commands/ListTagsForResourceCommand";
|
|
103
|
+
import {
|
|
104
|
+
ResumeBatchLoadTaskCommandInput,
|
|
105
|
+
ResumeBatchLoadTaskCommandOutput,
|
|
106
|
+
} from "./commands/ResumeBatchLoadTaskCommand";
|
|
91
107
|
import {
|
|
92
108
|
TagResourceCommandInput,
|
|
93
109
|
TagResourceCommandOutput,
|
|
@@ -114,32 +130,40 @@ import {
|
|
|
114
130
|
EndpointParameters,
|
|
115
131
|
} from "./endpoint/EndpointParameters";
|
|
116
132
|
export declare type ServiceInputTypes =
|
|
133
|
+
| CreateBatchLoadTaskCommandInput
|
|
117
134
|
| CreateDatabaseCommandInput
|
|
118
135
|
| CreateTableCommandInput
|
|
119
136
|
| DeleteDatabaseCommandInput
|
|
120
137
|
| DeleteTableCommandInput
|
|
138
|
+
| DescribeBatchLoadTaskCommandInput
|
|
121
139
|
| DescribeDatabaseCommandInput
|
|
122
140
|
| DescribeEndpointsCommandInput
|
|
123
141
|
| DescribeTableCommandInput
|
|
142
|
+
| ListBatchLoadTasksCommandInput
|
|
124
143
|
| ListDatabasesCommandInput
|
|
125
144
|
| ListTablesCommandInput
|
|
126
145
|
| ListTagsForResourceCommandInput
|
|
146
|
+
| ResumeBatchLoadTaskCommandInput
|
|
127
147
|
| TagResourceCommandInput
|
|
128
148
|
| UntagResourceCommandInput
|
|
129
149
|
| UpdateDatabaseCommandInput
|
|
130
150
|
| UpdateTableCommandInput
|
|
131
151
|
| WriteRecordsCommandInput;
|
|
132
152
|
export declare type ServiceOutputTypes =
|
|
153
|
+
| CreateBatchLoadTaskCommandOutput
|
|
133
154
|
| CreateDatabaseCommandOutput
|
|
134
155
|
| CreateTableCommandOutput
|
|
135
156
|
| DeleteDatabaseCommandOutput
|
|
136
157
|
| DeleteTableCommandOutput
|
|
158
|
+
| DescribeBatchLoadTaskCommandOutput
|
|
137
159
|
| DescribeDatabaseCommandOutput
|
|
138
160
|
| DescribeEndpointsCommandOutput
|
|
139
161
|
| DescribeTableCommandOutput
|
|
162
|
+
| ListBatchLoadTasksCommandOutput
|
|
140
163
|
| ListDatabasesCommandOutput
|
|
141
164
|
| ListTablesCommandOutput
|
|
142
165
|
| ListTagsForResourceCommandOutput
|
|
166
|
+
| ResumeBatchLoadTaskCommandOutput
|
|
143
167
|
| TagResourceCommandOutput
|
|
144
168
|
| UntagResourceCommandOutput
|
|
145
169
|
| UpdateDatabaseCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateBatchLoadTaskRequest,
|
|
11
|
+
CreateBatchLoadTaskResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TimestreamWriteClientResolvedConfig,
|
|
17
|
+
} from "../TimestreamWriteClient";
|
|
18
|
+
export interface CreateBatchLoadTaskCommandInput
|
|
19
|
+
extends CreateBatchLoadTaskRequest {}
|
|
20
|
+
export interface CreateBatchLoadTaskCommandOutput
|
|
21
|
+
extends CreateBatchLoadTaskResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateBatchLoadTaskCommand extends $Command<
|
|
24
|
+
CreateBatchLoadTaskCommandInput,
|
|
25
|
+
CreateBatchLoadTaskCommandOutput,
|
|
26
|
+
TimestreamWriteClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateBatchLoadTaskCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateBatchLoadTaskCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TimestreamWriteClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateBatchLoadTaskCommandInput, CreateBatchLoadTaskCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeBatchLoadTaskRequest,
|
|
11
|
+
DescribeBatchLoadTaskResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TimestreamWriteClientResolvedConfig,
|
|
17
|
+
} from "../TimestreamWriteClient";
|
|
18
|
+
export interface DescribeBatchLoadTaskCommandInput
|
|
19
|
+
extends DescribeBatchLoadTaskRequest {}
|
|
20
|
+
export interface DescribeBatchLoadTaskCommandOutput
|
|
21
|
+
extends DescribeBatchLoadTaskResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeBatchLoadTaskCommand extends $Command<
|
|
24
|
+
DescribeBatchLoadTaskCommandInput,
|
|
25
|
+
DescribeBatchLoadTaskCommandOutput,
|
|
26
|
+
TimestreamWriteClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBatchLoadTaskCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeBatchLoadTaskCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TimestreamWriteClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBatchLoadTaskCommandInput,
|
|
37
|
+
DescribeBatchLoadTaskCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListBatchLoadTasksRequest,
|
|
11
|
+
ListBatchLoadTasksResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TimestreamWriteClientResolvedConfig,
|
|
17
|
+
} from "../TimestreamWriteClient";
|
|
18
|
+
export interface ListBatchLoadTasksCommandInput
|
|
19
|
+
extends ListBatchLoadTasksRequest {}
|
|
20
|
+
export interface ListBatchLoadTasksCommandOutput
|
|
21
|
+
extends ListBatchLoadTasksResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListBatchLoadTasksCommand extends $Command<
|
|
24
|
+
ListBatchLoadTasksCommandInput,
|
|
25
|
+
ListBatchLoadTasksCommandOutput,
|
|
26
|
+
TimestreamWriteClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListBatchLoadTasksCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListBatchLoadTasksCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TimestreamWriteClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ResumeBatchLoadTaskRequest,
|
|
11
|
+
ResumeBatchLoadTaskResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TimestreamWriteClientResolvedConfig,
|
|
17
|
+
} from "../TimestreamWriteClient";
|
|
18
|
+
export interface ResumeBatchLoadTaskCommandInput
|
|
19
|
+
extends ResumeBatchLoadTaskRequest {}
|
|
20
|
+
export interface ResumeBatchLoadTaskCommandOutput
|
|
21
|
+
extends ResumeBatchLoadTaskResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ResumeBatchLoadTaskCommand extends $Command<
|
|
24
|
+
ResumeBatchLoadTaskCommandInput,
|
|
25
|
+
ResumeBatchLoadTaskCommandOutput,
|
|
26
|
+
TimestreamWriteClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ResumeBatchLoadTaskCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ResumeBatchLoadTaskCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TimestreamWriteClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ResumeBatchLoadTaskCommandInput, ResumeBatchLoadTaskCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
export * from "./CreateBatchLoadTaskCommand";
|
|
1
2
|
export * from "./CreateDatabaseCommand";
|
|
2
3
|
export * from "./CreateTableCommand";
|
|
3
4
|
export * from "./DeleteDatabaseCommand";
|
|
4
5
|
export * from "./DeleteTableCommand";
|
|
6
|
+
export * from "./DescribeBatchLoadTaskCommand";
|
|
5
7
|
export * from "./DescribeDatabaseCommand";
|
|
6
8
|
export * from "./DescribeEndpointsCommand";
|
|
7
9
|
export * from "./DescribeTableCommand";
|
|
10
|
+
export * from "./ListBatchLoadTasksCommand";
|
|
8
11
|
export * from "./ListDatabasesCommand";
|
|
9
12
|
export * from "./ListTablesCommand";
|
|
10
13
|
export * from "./ListTagsForResourceCommand";
|
|
14
|
+
export * from "./ResumeBatchLoadTaskCommand";
|
|
11
15
|
export * from "./TagResourceCommand";
|
|
12
16
|
export * from "./UntagResourceCommand";
|
|
13
17
|
export * from "./UpdateDatabaseCommand";
|