@aws-sdk/client-timestream-write 3.927.0 → 3.929.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/dist-cjs/index.js +690 -771
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/TimestreamWriteClient.js +2 -0
- package/dist-es/commands/CreateBatchLoadTaskCommand.js +2 -7
- package/dist-es/commands/CreateDatabaseCommand.js +2 -6
- package/dist-es/commands/CreateTableCommand.js +2 -6
- package/dist-es/commands/DeleteDatabaseCommand.js +2 -6
- package/dist-es/commands/DeleteTableCommand.js +2 -6
- package/dist-es/commands/DescribeBatchLoadTaskCommand.js +2 -6
- package/dist-es/commands/DescribeDatabaseCommand.js +2 -6
- package/dist-es/commands/DescribeEndpointsCommand.js +3 -9
- package/dist-es/commands/DescribeTableCommand.js +2 -6
- package/dist-es/commands/ListBatchLoadTasksCommand.js +2 -6
- package/dist-es/commands/ListDatabasesCommand.js +2 -6
- package/dist-es/commands/ListTablesCommand.js +2 -6
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -6
- package/dist-es/commands/ResumeBatchLoadTaskCommand.js +2 -6
- package/dist-es/commands/TagResourceCommand.js +2 -6
- package/dist-es/commands/UntagResourceCommand.js +2 -6
- package/dist-es/commands/UpdateDatabaseCommand.js +2 -6
- package/dist-es/commands/UpdateTableCommand.js +2 -6
- package/dist-es/commands/WriteRecordsCommand.js +2 -6
- package/dist-es/models/models_0.js +0 -5
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +634 -0
- package/dist-types/TimestreamWriteClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -4
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +112 -0
- package/dist-types/ts3.4/TimestreamWriteClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -3
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -656
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -173
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -233
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateBatchLoadTaskCommandInput, CreateBatchLoadTaskCommandOutput } from "../commands/CreateBatchLoadTaskCommand";
|
|
4
|
-
import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "../commands/CreateDatabaseCommand";
|
|
5
|
-
import { CreateTableCommandInput, CreateTableCommandOutput } from "../commands/CreateTableCommand";
|
|
6
|
-
import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "../commands/DeleteDatabaseCommand";
|
|
7
|
-
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "../commands/DeleteTableCommand";
|
|
8
|
-
import { DescribeBatchLoadTaskCommandInput, DescribeBatchLoadTaskCommandOutput } from "../commands/DescribeBatchLoadTaskCommand";
|
|
9
|
-
import { DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput } from "../commands/DescribeDatabaseCommand";
|
|
10
|
-
import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "../commands/DescribeEndpointsCommand";
|
|
11
|
-
import { DescribeTableCommandInput, DescribeTableCommandOutput } from "../commands/DescribeTableCommand";
|
|
12
|
-
import { ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput } from "../commands/ListBatchLoadTasksCommand";
|
|
13
|
-
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
|
|
14
|
-
import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
|
|
15
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
16
|
-
import { ResumeBatchLoadTaskCommandInput, ResumeBatchLoadTaskCommandOutput } from "../commands/ResumeBatchLoadTaskCommand";
|
|
17
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
18
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
19
|
-
import { UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput } from "../commands/UpdateDatabaseCommand";
|
|
20
|
-
import { UpdateTableCommandInput, UpdateTableCommandOutput } from "../commands/UpdateTableCommand";
|
|
21
|
-
import { WriteRecordsCommandInput, WriteRecordsCommandOutput } from "../commands/WriteRecordsCommand";
|
|
22
|
-
/**
|
|
23
|
-
* serializeAws_json1_0CreateBatchLoadTaskCommand
|
|
24
|
-
*/
|
|
25
|
-
export declare const se_CreateBatchLoadTaskCommand: (input: CreateBatchLoadTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
-
/**
|
|
27
|
-
* serializeAws_json1_0CreateDatabaseCommand
|
|
28
|
-
*/
|
|
29
|
-
export declare const se_CreateDatabaseCommand: (input: CreateDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
-
/**
|
|
31
|
-
* serializeAws_json1_0CreateTableCommand
|
|
32
|
-
*/
|
|
33
|
-
export declare const se_CreateTableCommand: (input: CreateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
-
/**
|
|
35
|
-
* serializeAws_json1_0DeleteDatabaseCommand
|
|
36
|
-
*/
|
|
37
|
-
export declare const se_DeleteDatabaseCommand: (input: DeleteDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
-
/**
|
|
39
|
-
* serializeAws_json1_0DeleteTableCommand
|
|
40
|
-
*/
|
|
41
|
-
export declare const se_DeleteTableCommand: (input: DeleteTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
-
/**
|
|
43
|
-
* serializeAws_json1_0DescribeBatchLoadTaskCommand
|
|
44
|
-
*/
|
|
45
|
-
export declare const se_DescribeBatchLoadTaskCommand: (input: DescribeBatchLoadTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
-
/**
|
|
47
|
-
* serializeAws_json1_0DescribeDatabaseCommand
|
|
48
|
-
*/
|
|
49
|
-
export declare const se_DescribeDatabaseCommand: (input: DescribeDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
-
/**
|
|
51
|
-
* serializeAws_json1_0DescribeEndpointsCommand
|
|
52
|
-
*/
|
|
53
|
-
export declare const se_DescribeEndpointsCommand: (input: DescribeEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
/**
|
|
55
|
-
* serializeAws_json1_0DescribeTableCommand
|
|
56
|
-
*/
|
|
57
|
-
export declare const se_DescribeTableCommand: (input: DescribeTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
/**
|
|
59
|
-
* serializeAws_json1_0ListBatchLoadTasksCommand
|
|
60
|
-
*/
|
|
61
|
-
export declare const se_ListBatchLoadTasksCommand: (input: ListBatchLoadTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
/**
|
|
63
|
-
* serializeAws_json1_0ListDatabasesCommand
|
|
64
|
-
*/
|
|
65
|
-
export declare const se_ListDatabasesCommand: (input: ListDatabasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
/**
|
|
67
|
-
* serializeAws_json1_0ListTablesCommand
|
|
68
|
-
*/
|
|
69
|
-
export declare const se_ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
/**
|
|
71
|
-
* serializeAws_json1_0ListTagsForResourceCommand
|
|
72
|
-
*/
|
|
73
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
/**
|
|
75
|
-
* serializeAws_json1_0ResumeBatchLoadTaskCommand
|
|
76
|
-
*/
|
|
77
|
-
export declare const se_ResumeBatchLoadTaskCommand: (input: ResumeBatchLoadTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
/**
|
|
79
|
-
* serializeAws_json1_0TagResourceCommand
|
|
80
|
-
*/
|
|
81
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
/**
|
|
83
|
-
* serializeAws_json1_0UntagResourceCommand
|
|
84
|
-
*/
|
|
85
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
/**
|
|
87
|
-
* serializeAws_json1_0UpdateDatabaseCommand
|
|
88
|
-
*/
|
|
89
|
-
export declare const se_UpdateDatabaseCommand: (input: UpdateDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
/**
|
|
91
|
-
* serializeAws_json1_0UpdateTableCommand
|
|
92
|
-
*/
|
|
93
|
-
export declare const se_UpdateTableCommand: (input: UpdateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
/**
|
|
95
|
-
* serializeAws_json1_0WriteRecordsCommand
|
|
96
|
-
*/
|
|
97
|
-
export declare const se_WriteRecordsCommand: (input: WriteRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
/**
|
|
99
|
-
* deserializeAws_json1_0CreateBatchLoadTaskCommand
|
|
100
|
-
*/
|
|
101
|
-
export declare const de_CreateBatchLoadTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBatchLoadTaskCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* deserializeAws_json1_0CreateDatabaseCommand
|
|
104
|
-
*/
|
|
105
|
-
export declare const de_CreateDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatabaseCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* deserializeAws_json1_0CreateTableCommand
|
|
108
|
-
*/
|
|
109
|
-
export declare const de_CreateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTableCommandOutput>;
|
|
110
|
-
/**
|
|
111
|
-
* deserializeAws_json1_0DeleteDatabaseCommand
|
|
112
|
-
*/
|
|
113
|
-
export declare const de_DeleteDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatabaseCommandOutput>;
|
|
114
|
-
/**
|
|
115
|
-
* deserializeAws_json1_0DeleteTableCommand
|
|
116
|
-
*/
|
|
117
|
-
export declare const de_DeleteTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableCommandOutput>;
|
|
118
|
-
/**
|
|
119
|
-
* deserializeAws_json1_0DescribeBatchLoadTaskCommand
|
|
120
|
-
*/
|
|
121
|
-
export declare const de_DescribeBatchLoadTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBatchLoadTaskCommandOutput>;
|
|
122
|
-
/**
|
|
123
|
-
* deserializeAws_json1_0DescribeDatabaseCommand
|
|
124
|
-
*/
|
|
125
|
-
export declare const de_DescribeDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDatabaseCommandOutput>;
|
|
126
|
-
/**
|
|
127
|
-
* deserializeAws_json1_0DescribeEndpointsCommand
|
|
128
|
-
*/
|
|
129
|
-
export declare const de_DescribeEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEndpointsCommandOutput>;
|
|
130
|
-
/**
|
|
131
|
-
* deserializeAws_json1_0DescribeTableCommand
|
|
132
|
-
*/
|
|
133
|
-
export declare const de_DescribeTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTableCommandOutput>;
|
|
134
|
-
/**
|
|
135
|
-
* deserializeAws_json1_0ListBatchLoadTasksCommand
|
|
136
|
-
*/
|
|
137
|
-
export declare const de_ListBatchLoadTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBatchLoadTasksCommandOutput>;
|
|
138
|
-
/**
|
|
139
|
-
* deserializeAws_json1_0ListDatabasesCommand
|
|
140
|
-
*/
|
|
141
|
-
export declare const de_ListDatabasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatabasesCommandOutput>;
|
|
142
|
-
/**
|
|
143
|
-
* deserializeAws_json1_0ListTablesCommand
|
|
144
|
-
*/
|
|
145
|
-
export declare const de_ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
|
|
146
|
-
/**
|
|
147
|
-
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
148
|
-
*/
|
|
149
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
150
|
-
/**
|
|
151
|
-
* deserializeAws_json1_0ResumeBatchLoadTaskCommand
|
|
152
|
-
*/
|
|
153
|
-
export declare const de_ResumeBatchLoadTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeBatchLoadTaskCommandOutput>;
|
|
154
|
-
/**
|
|
155
|
-
* deserializeAws_json1_0TagResourceCommand
|
|
156
|
-
*/
|
|
157
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
158
|
-
/**
|
|
159
|
-
* deserializeAws_json1_0UntagResourceCommand
|
|
160
|
-
*/
|
|
161
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
162
|
-
/**
|
|
163
|
-
* deserializeAws_json1_0UpdateDatabaseCommand
|
|
164
|
-
*/
|
|
165
|
-
export declare const de_UpdateDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatabaseCommandOutput>;
|
|
166
|
-
/**
|
|
167
|
-
* deserializeAws_json1_0UpdateTableCommand
|
|
168
|
-
*/
|
|
169
|
-
export declare const de_UpdateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTableCommandOutput>;
|
|
170
|
-
/**
|
|
171
|
-
* deserializeAws_json1_0WriteRecordsCommand
|
|
172
|
-
*/
|
|
173
|
-
export declare const de_WriteRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<WriteRecordsCommandOutput>;
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateBatchLoadTaskCommandInput,
|
|
8
|
-
CreateBatchLoadTaskCommandOutput,
|
|
9
|
-
} from "../commands/CreateBatchLoadTaskCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateDatabaseCommandInput,
|
|
12
|
-
CreateDatabaseCommandOutput,
|
|
13
|
-
} from "../commands/CreateDatabaseCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateTableCommandInput,
|
|
16
|
-
CreateTableCommandOutput,
|
|
17
|
-
} from "../commands/CreateTableCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteDatabaseCommandInput,
|
|
20
|
-
DeleteDatabaseCommandOutput,
|
|
21
|
-
} from "../commands/DeleteDatabaseCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteTableCommandInput,
|
|
24
|
-
DeleteTableCommandOutput,
|
|
25
|
-
} from "../commands/DeleteTableCommand";
|
|
26
|
-
import {
|
|
27
|
-
DescribeBatchLoadTaskCommandInput,
|
|
28
|
-
DescribeBatchLoadTaskCommandOutput,
|
|
29
|
-
} from "../commands/DescribeBatchLoadTaskCommand";
|
|
30
|
-
import {
|
|
31
|
-
DescribeDatabaseCommandInput,
|
|
32
|
-
DescribeDatabaseCommandOutput,
|
|
33
|
-
} from "../commands/DescribeDatabaseCommand";
|
|
34
|
-
import {
|
|
35
|
-
DescribeEndpointsCommandInput,
|
|
36
|
-
DescribeEndpointsCommandOutput,
|
|
37
|
-
} from "../commands/DescribeEndpointsCommand";
|
|
38
|
-
import {
|
|
39
|
-
DescribeTableCommandInput,
|
|
40
|
-
DescribeTableCommandOutput,
|
|
41
|
-
} from "../commands/DescribeTableCommand";
|
|
42
|
-
import {
|
|
43
|
-
ListBatchLoadTasksCommandInput,
|
|
44
|
-
ListBatchLoadTasksCommandOutput,
|
|
45
|
-
} from "../commands/ListBatchLoadTasksCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListDatabasesCommandInput,
|
|
48
|
-
ListDatabasesCommandOutput,
|
|
49
|
-
} from "../commands/ListDatabasesCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListTablesCommandInput,
|
|
52
|
-
ListTablesCommandOutput,
|
|
53
|
-
} from "../commands/ListTablesCommand";
|
|
54
|
-
import {
|
|
55
|
-
ListTagsForResourceCommandInput,
|
|
56
|
-
ListTagsForResourceCommandOutput,
|
|
57
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
58
|
-
import {
|
|
59
|
-
ResumeBatchLoadTaskCommandInput,
|
|
60
|
-
ResumeBatchLoadTaskCommandOutput,
|
|
61
|
-
} from "../commands/ResumeBatchLoadTaskCommand";
|
|
62
|
-
import {
|
|
63
|
-
TagResourceCommandInput,
|
|
64
|
-
TagResourceCommandOutput,
|
|
65
|
-
} from "../commands/TagResourceCommand";
|
|
66
|
-
import {
|
|
67
|
-
UntagResourceCommandInput,
|
|
68
|
-
UntagResourceCommandOutput,
|
|
69
|
-
} from "../commands/UntagResourceCommand";
|
|
70
|
-
import {
|
|
71
|
-
UpdateDatabaseCommandInput,
|
|
72
|
-
UpdateDatabaseCommandOutput,
|
|
73
|
-
} from "../commands/UpdateDatabaseCommand";
|
|
74
|
-
import {
|
|
75
|
-
UpdateTableCommandInput,
|
|
76
|
-
UpdateTableCommandOutput,
|
|
77
|
-
} from "../commands/UpdateTableCommand";
|
|
78
|
-
import {
|
|
79
|
-
WriteRecordsCommandInput,
|
|
80
|
-
WriteRecordsCommandOutput,
|
|
81
|
-
} from "../commands/WriteRecordsCommand";
|
|
82
|
-
export declare const se_CreateBatchLoadTaskCommand: (
|
|
83
|
-
input: CreateBatchLoadTaskCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_CreateDatabaseCommand: (
|
|
87
|
-
input: CreateDatabaseCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_CreateTableCommand: (
|
|
91
|
-
input: CreateTableCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_DeleteDatabaseCommand: (
|
|
95
|
-
input: DeleteDatabaseCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_DeleteTableCommand: (
|
|
99
|
-
input: DeleteTableCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_DescribeBatchLoadTaskCommand: (
|
|
103
|
-
input: DescribeBatchLoadTaskCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_DescribeDatabaseCommand: (
|
|
107
|
-
input: DescribeDatabaseCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_DescribeEndpointsCommand: (
|
|
111
|
-
input: DescribeEndpointsCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_DescribeTableCommand: (
|
|
115
|
-
input: DescribeTableCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_ListBatchLoadTasksCommand: (
|
|
119
|
-
input: ListBatchLoadTasksCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_ListDatabasesCommand: (
|
|
123
|
-
input: ListDatabasesCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_ListTablesCommand: (
|
|
127
|
-
input: ListTablesCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
131
|
-
input: ListTagsForResourceCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_ResumeBatchLoadTaskCommand: (
|
|
135
|
-
input: ResumeBatchLoadTaskCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_TagResourceCommand: (
|
|
139
|
-
input: TagResourceCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_UntagResourceCommand: (
|
|
143
|
-
input: UntagResourceCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_UpdateDatabaseCommand: (
|
|
147
|
-
input: UpdateDatabaseCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_UpdateTableCommand: (
|
|
151
|
-
input: UpdateTableCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_WriteRecordsCommand: (
|
|
155
|
-
input: WriteRecordsCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const de_CreateBatchLoadTaskCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<CreateBatchLoadTaskCommandOutput>;
|
|
162
|
-
export declare const de_CreateDatabaseCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<CreateDatabaseCommandOutput>;
|
|
166
|
-
export declare const de_CreateTableCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<CreateTableCommandOutput>;
|
|
170
|
-
export declare const de_DeleteDatabaseCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<DeleteDatabaseCommandOutput>;
|
|
174
|
-
export declare const de_DeleteTableCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<DeleteTableCommandOutput>;
|
|
178
|
-
export declare const de_DescribeBatchLoadTaskCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<DescribeBatchLoadTaskCommandOutput>;
|
|
182
|
-
export declare const de_DescribeDatabaseCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<DescribeDatabaseCommandOutput>;
|
|
186
|
-
export declare const de_DescribeEndpointsCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<DescribeEndpointsCommandOutput>;
|
|
190
|
-
export declare const de_DescribeTableCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<DescribeTableCommandOutput>;
|
|
194
|
-
export declare const de_ListBatchLoadTasksCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<ListBatchLoadTasksCommandOutput>;
|
|
198
|
-
export declare const de_ListDatabasesCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<ListDatabasesCommandOutput>;
|
|
202
|
-
export declare const de_ListTablesCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<ListTablesCommandOutput>;
|
|
206
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
210
|
-
export declare const de_ResumeBatchLoadTaskCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<ResumeBatchLoadTaskCommandOutput>;
|
|
214
|
-
export declare const de_TagResourceCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<TagResourceCommandOutput>;
|
|
218
|
-
export declare const de_UntagResourceCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
222
|
-
export declare const de_UpdateDatabaseCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<UpdateDatabaseCommandOutput>;
|
|
226
|
-
export declare const de_UpdateTableCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<UpdateTableCommandOutput>;
|
|
230
|
-
export declare const de_WriteRecordsCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<WriteRecordsCommandOutput>;
|