@aws-sdk/client-timestream-write 3.651.1 → 3.658.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist-types/commands/CreateBatchLoadTaskCommand.d.ts +11 -0
  2. package/dist-types/commands/CreateDatabaseCommand.d.ts +11 -0
  3. package/dist-types/commands/CreateTableCommand.d.ts +11 -0
  4. package/dist-types/commands/DeleteDatabaseCommand.d.ts +11 -0
  5. package/dist-types/commands/DeleteTableCommand.d.ts +11 -0
  6. package/dist-types/commands/DescribeBatchLoadTaskCommand.d.ts +11 -0
  7. package/dist-types/commands/DescribeDatabaseCommand.d.ts +11 -0
  8. package/dist-types/commands/DescribeEndpointsCommand.d.ts +11 -0
  9. package/dist-types/commands/DescribeTableCommand.d.ts +11 -0
  10. package/dist-types/commands/ListBatchLoadTasksCommand.d.ts +11 -0
  11. package/dist-types/commands/ListDatabasesCommand.d.ts +11 -0
  12. package/dist-types/commands/ListTablesCommand.d.ts +11 -0
  13. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  14. package/dist-types/commands/ResumeBatchLoadTaskCommand.d.ts +11 -0
  15. package/dist-types/commands/TagResourceCommand.d.ts +11 -0
  16. package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
  17. package/dist-types/commands/UpdateDatabaseCommand.d.ts +11 -0
  18. package/dist-types/commands/UpdateTableCommand.d.ts +11 -0
  19. package/dist-types/commands/WriteRecordsCommand.d.ts +11 -0
  20. package/dist-types/ts3.4/commands/CreateBatchLoadTaskCommand.d.ts +12 -1
  21. package/dist-types/ts3.4/commands/CreateDatabaseCommand.d.ts +12 -1
  22. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +12 -1
  23. package/dist-types/ts3.4/commands/DeleteDatabaseCommand.d.ts +12 -1
  24. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +12 -1
  25. package/dist-types/ts3.4/commands/DescribeBatchLoadTaskCommand.d.ts +12 -1
  26. package/dist-types/ts3.4/commands/DescribeDatabaseCommand.d.ts +12 -1
  27. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +12 -1
  28. package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +12 -1
  29. package/dist-types/ts3.4/commands/ListBatchLoadTasksCommand.d.ts +12 -1
  30. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +12 -1
  31. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +12 -1
  32. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +12 -1
  33. package/dist-types/ts3.4/commands/ResumeBatchLoadTaskCommand.d.ts +12 -1
  34. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +12 -1
  35. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +12 -1
  36. package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +12 -1
  37. package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +12 -1
  38. package/dist-types/ts3.4/commands/WriteRecordsCommand.d.ts +12 -1
  39. package/package.json +36 -36
@@ -161,4 +161,15 @@ declare const CreateBatchLoadTaskCommand_base: {
161
161
  * @public
162
162
  */
163
163
  export declare class CreateBatchLoadTaskCommand extends CreateBatchLoadTaskCommand_base {
164
+ /** @internal type navigation helper, not in runtime. */
165
+ protected static __types: {
166
+ api: {
167
+ input: CreateBatchLoadTaskRequest;
168
+ output: CreateBatchLoadTaskResponse;
169
+ };
170
+ sdk: {
171
+ input: CreateBatchLoadTaskCommandInput;
172
+ output: CreateBatchLoadTaskCommandOutput;
173
+ };
174
+ };
164
175
  }
@@ -99,4 +99,15 @@ declare const CreateDatabaseCommand_base: {
99
99
  * @public
100
100
  */
101
101
  export declare class CreateDatabaseCommand extends CreateDatabaseCommand_base {
102
+ /** @internal type navigation helper, not in runtime. */
103
+ protected static __types: {
104
+ api: {
105
+ input: CreateDatabaseRequest;
106
+ output: CreateDatabaseResponse;
107
+ };
108
+ sdk: {
109
+ input: CreateDatabaseCommandInput;
110
+ output: CreateDatabaseCommandOutput;
111
+ };
112
+ };
102
113
  }
@@ -153,4 +153,15 @@ declare const CreateTableCommand_base: {
153
153
  * @public
154
154
  */
155
155
  export declare class CreateTableCommand extends CreateTableCommand_base {
156
+ /** @internal type navigation helper, not in runtime. */
157
+ protected static __types: {
158
+ api: {
159
+ input: CreateTableRequest;
160
+ output: CreateTableResponse;
161
+ };
162
+ sdk: {
163
+ input: CreateTableCommandInput;
164
+ output: CreateTableCommandOutput;
165
+ };
166
+ };
156
167
  }
@@ -88,4 +88,15 @@ declare const DeleteDatabaseCommand_base: {
88
88
  * @public
89
89
  */
90
90
  export declare class DeleteDatabaseCommand extends DeleteDatabaseCommand_base {
91
+ /** @internal type navigation helper, not in runtime. */
92
+ protected static __types: {
93
+ api: {
94
+ input: DeleteDatabaseRequest;
95
+ output: {};
96
+ };
97
+ sdk: {
98
+ input: DeleteDatabaseCommandInput;
99
+ output: DeleteDatabaseCommandOutput;
100
+ };
101
+ };
91
102
  }
@@ -86,4 +86,15 @@ declare const DeleteTableCommand_base: {
86
86
  * @public
87
87
  */
88
88
  export declare class DeleteTableCommand extends DeleteTableCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: DeleteTableRequest;
93
+ output: {};
94
+ };
95
+ sdk: {
96
+ input: DeleteTableCommandInput;
97
+ output: DeleteTableCommandOutput;
98
+ };
99
+ };
89
100
  }
@@ -161,4 +161,15 @@ declare const DescribeBatchLoadTaskCommand_base: {
161
161
  * @public
162
162
  */
163
163
  export declare class DescribeBatchLoadTaskCommand extends DescribeBatchLoadTaskCommand_base {
164
+ /** @internal type navigation helper, not in runtime. */
165
+ protected static __types: {
166
+ api: {
167
+ input: DescribeBatchLoadTaskRequest;
168
+ output: DescribeBatchLoadTaskResponse;
169
+ };
170
+ sdk: {
171
+ input: DescribeBatchLoadTaskCommandInput;
172
+ output: DescribeBatchLoadTaskCommandOutput;
173
+ };
174
+ };
164
175
  }
@@ -89,4 +89,15 @@ declare const DescribeDatabaseCommand_base: {
89
89
  * @public
90
90
  */
91
91
  export declare class DescribeDatabaseCommand extends DescribeDatabaseCommand_base {
92
+ /** @internal type navigation helper, not in runtime. */
93
+ protected static __types: {
94
+ api: {
95
+ input: DescribeDatabaseRequest;
96
+ output: DescribeDatabaseResponse;
97
+ };
98
+ sdk: {
99
+ input: DescribeDatabaseCommandInput;
100
+ output: DescribeDatabaseCommandOutput;
101
+ };
102
+ };
92
103
  }
@@ -92,4 +92,15 @@ declare const DescribeEndpointsCommand_base: {
92
92
  * @public
93
93
  */
94
94
  export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {
95
+ /** @internal type navigation helper, not in runtime. */
96
+ protected static __types: {
97
+ api: {
98
+ input: {};
99
+ output: DescribeEndpointsResponse;
100
+ };
101
+ sdk: {
102
+ input: DescribeEndpointsCommandInput;
103
+ output: DescribeEndpointsCommandOutput;
104
+ };
105
+ };
95
106
  }
@@ -114,4 +114,15 @@ declare const DescribeTableCommand_base: {
114
114
  * @public
115
115
  */
116
116
  export declare class DescribeTableCommand extends DescribeTableCommand_base {
117
+ /** @internal type navigation helper, not in runtime. */
118
+ protected static __types: {
119
+ api: {
120
+ input: DescribeTableRequest;
121
+ output: DescribeTableResponse;
122
+ };
123
+ sdk: {
124
+ input: DescribeTableCommandInput;
125
+ output: DescribeTableCommandOutput;
126
+ };
127
+ };
117
128
  }
@@ -90,4 +90,15 @@ declare const ListBatchLoadTasksCommand_base: {
90
90
  * @public
91
91
  */
92
92
  export declare class ListBatchLoadTasksCommand extends ListBatchLoadTasksCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: ListBatchLoadTasksRequest;
97
+ output: ListBatchLoadTasksResponse;
98
+ };
99
+ sdk: {
100
+ input: ListBatchLoadTasksCommandInput;
101
+ output: ListBatchLoadTasksCommandOutput;
102
+ };
103
+ };
93
104
  }
@@ -88,4 +88,15 @@ declare const ListDatabasesCommand_base: {
88
88
  * @public
89
89
  */
90
90
  export declare class ListDatabasesCommand extends ListDatabasesCommand_base {
91
+ /** @internal type navigation helper, not in runtime. */
92
+ protected static __types: {
93
+ api: {
94
+ input: ListDatabasesRequest;
95
+ output: ListDatabasesResponse;
96
+ };
97
+ sdk: {
98
+ input: ListDatabasesCommandInput;
99
+ output: ListDatabasesCommandOutput;
100
+ };
101
+ };
91
102
  }
@@ -117,4 +117,15 @@ declare const ListTablesCommand_base: {
117
117
  * @public
118
118
  */
119
119
  export declare class ListTablesCommand extends ListTablesCommand_base {
120
+ /** @internal type navigation helper, not in runtime. */
121
+ protected static __types: {
122
+ api: {
123
+ input: ListTablesRequest;
124
+ output: ListTablesResponse;
125
+ };
126
+ sdk: {
127
+ input: ListTablesCommandInput;
128
+ output: ListTablesCommandOutput;
129
+ };
130
+ };
120
131
  }
@@ -76,4 +76,15 @@ declare const ListTagsForResourceCommand_base: {
76
76
  * @public
77
77
  */
78
78
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: ListTagsForResourceRequest;
83
+ output: ListTagsForResourceResponse;
84
+ };
85
+ sdk: {
86
+ input: ListTagsForResourceCommandInput;
87
+ output: ListTagsForResourceCommandOutput;
88
+ };
89
+ };
79
90
  }
@@ -78,4 +78,15 @@ declare const ResumeBatchLoadTaskCommand_base: {
78
78
  * @public
79
79
  */
80
80
  export declare class ResumeBatchLoadTaskCommand extends ResumeBatchLoadTaskCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: ResumeBatchLoadTaskRequest;
85
+ output: {};
86
+ };
87
+ sdk: {
88
+ input: ResumeBatchLoadTaskCommandInput;
89
+ output: ResumeBatchLoadTaskCommandOutput;
90
+ };
91
+ };
81
92
  }
@@ -80,4 +80,15 @@ declare const TagResourceCommand_base: {
80
80
  * @public
81
81
  */
82
82
  export declare class TagResourceCommand extends TagResourceCommand_base {
83
+ /** @internal type navigation helper, not in runtime. */
84
+ protected static __types: {
85
+ api: {
86
+ input: TagResourceRequest;
87
+ output: {};
88
+ };
89
+ sdk: {
90
+ input: TagResourceCommandInput;
91
+ output: TagResourceCommandOutput;
92
+ };
93
+ };
83
94
  }
@@ -75,4 +75,15 @@ declare const UntagResourceCommand_base: {
75
75
  * @public
76
76
  */
77
77
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: UntagResourceRequest;
82
+ output: {};
83
+ };
84
+ sdk: {
85
+ input: UntagResourceCommandInput;
86
+ output: UntagResourceCommandOutput;
87
+ };
88
+ };
78
89
  }
@@ -94,4 +94,15 @@ declare const UpdateDatabaseCommand_base: {
94
94
  * @public
95
95
  */
96
96
  export declare class UpdateDatabaseCommand extends UpdateDatabaseCommand_base {
97
+ /** @internal type navigation helper, not in runtime. */
98
+ protected static __types: {
99
+ api: {
100
+ input: UpdateDatabaseRequest;
101
+ output: UpdateDatabaseResponse;
102
+ };
103
+ sdk: {
104
+ input: UpdateDatabaseCommandInput;
105
+ output: UpdateDatabaseCommandOutput;
106
+ };
107
+ };
97
108
  }
@@ -140,4 +140,15 @@ declare const UpdateTableCommand_base: {
140
140
  * @public
141
141
  */
142
142
  export declare class UpdateTableCommand extends UpdateTableCommand_base {
143
+ /** @internal type navigation helper, not in runtime. */
144
+ protected static __types: {
145
+ api: {
146
+ input: UpdateTableRequest;
147
+ output: UpdateTableResponse;
148
+ };
149
+ sdk: {
150
+ input: UpdateTableCommandInput;
151
+ output: UpdateTableCommandOutput;
152
+ };
153
+ };
143
154
  }
@@ -200,4 +200,15 @@ declare const WriteRecordsCommand_base: {
200
200
  * @public
201
201
  */
202
202
  export declare class WriteRecordsCommand extends WriteRecordsCommand_base {
203
+ /** @internal type navigation helper, not in runtime. */
204
+ protected static __types: {
205
+ api: {
206
+ input: WriteRecordsRequest;
207
+ output: WriteRecordsResponse;
208
+ };
209
+ sdk: {
210
+ input: WriteRecordsCommandInput;
211
+ output: WriteRecordsCommandOutput;
212
+ };
213
+ };
203
214
  }
@@ -37,4 +37,15 @@ declare const CreateBatchLoadTaskCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class CreateBatchLoadTaskCommand extends CreateBatchLoadTaskCommand_base {}
40
+ export declare class CreateBatchLoadTaskCommand extends CreateBatchLoadTaskCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateBatchLoadTaskRequest;
44
+ output: CreateBatchLoadTaskResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateBatchLoadTaskCommandInput;
48
+ output: CreateBatchLoadTaskCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -36,4 +36,15 @@ declare const CreateDatabaseCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class CreateDatabaseCommand extends CreateDatabaseCommand_base {}
39
+ export declare class CreateDatabaseCommand extends CreateDatabaseCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateDatabaseRequest;
43
+ output: CreateDatabaseResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateDatabaseCommandInput;
47
+ output: CreateDatabaseCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const CreateTableCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class CreateTableCommand extends CreateTableCommand_base {}
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
+ }
@@ -31,4 +31,15 @@ declare const DeleteDatabaseCommand_base: {
31
31
  >;
32
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
33
  };
34
- export declare class DeleteDatabaseCommand extends DeleteDatabaseCommand_base {}
34
+ export declare class DeleteDatabaseCommand extends DeleteDatabaseCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: DeleteDatabaseRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: DeleteDatabaseCommandInput;
42
+ output: DeleteDatabaseCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -31,4 +31,15 @@ declare const DeleteTableCommand_base: {
31
31
  >;
32
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
33
  };
34
- export declare class DeleteTableCommand extends DeleteTableCommand_base {}
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
+ }
@@ -37,4 +37,15 @@ declare const DescribeBatchLoadTaskCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DescribeBatchLoadTaskCommand extends DescribeBatchLoadTaskCommand_base {}
40
+ export declare class DescribeBatchLoadTaskCommand extends DescribeBatchLoadTaskCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeBatchLoadTaskRequest;
44
+ output: DescribeBatchLoadTaskResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeBatchLoadTaskCommandInput;
48
+ output: DescribeBatchLoadTaskCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -36,4 +36,15 @@ declare const DescribeDatabaseCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class DescribeDatabaseCommand extends DescribeDatabaseCommand_base {}
39
+ export declare class DescribeDatabaseCommand extends DescribeDatabaseCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DescribeDatabaseRequest;
43
+ output: DescribeDatabaseResponse;
44
+ };
45
+ sdk: {
46
+ input: DescribeDatabaseCommandInput;
47
+ output: DescribeDatabaseCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -37,4 +37,15 @@ declare const DescribeEndpointsCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {}
40
+ export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: {};
44
+ output: DescribeEndpointsResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeEndpointsCommandInput;
48
+ output: DescribeEndpointsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -36,4 +36,15 @@ declare const DescribeTableCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class DescribeTableCommand extends DescribeTableCommand_base {}
39
+ export declare class DescribeTableCommand extends DescribeTableCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DescribeTableRequest;
43
+ output: DescribeTableResponse;
44
+ };
45
+ sdk: {
46
+ input: DescribeTableCommandInput;
47
+ output: DescribeTableCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -37,4 +37,15 @@ declare const ListBatchLoadTasksCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListBatchLoadTasksCommand extends ListBatchLoadTasksCommand_base {}
40
+ export declare class ListBatchLoadTasksCommand extends ListBatchLoadTasksCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListBatchLoadTasksRequest;
44
+ output: ListBatchLoadTasksResponse;
45
+ };
46
+ sdk: {
47
+ input: ListBatchLoadTasksCommandInput;
48
+ output: ListBatchLoadTasksCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -36,4 +36,15 @@ declare const ListDatabasesCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class ListDatabasesCommand extends ListDatabasesCommand_base {}
39
+ export declare class ListDatabasesCommand extends ListDatabasesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListDatabasesRequest;
43
+ output: ListDatabasesResponse;
44
+ };
45
+ sdk: {
46
+ input: ListDatabasesCommandInput;
47
+ output: ListDatabasesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const ListTablesCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ListTablesCommand extends ListTablesCommand_base {}
36
+ export declare class ListTablesCommand extends ListTablesCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListTablesRequest;
40
+ output: ListTablesResponse;
41
+ };
42
+ sdk: {
43
+ input: ListTablesCommandInput;
44
+ output: ListTablesCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -37,4 +37,15 @@ declare const ListTagsForResourceCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const ResumeBatchLoadTaskCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ResumeBatchLoadTaskCommand extends ResumeBatchLoadTaskCommand_base {}
40
+ export declare class ResumeBatchLoadTaskCommand extends ResumeBatchLoadTaskCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ResumeBatchLoadTaskRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: ResumeBatchLoadTaskCommandInput;
48
+ output: ResumeBatchLoadTaskCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const TagResourceCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class TagResourceCommand extends TagResourceCommand_base {}
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const UntagResourceCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class UntagResourceCommand extends UntagResourceCommand_base {}
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -36,4 +36,15 @@ declare const UpdateDatabaseCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class UpdateDatabaseCommand extends UpdateDatabaseCommand_base {}
39
+ export declare class UpdateDatabaseCommand extends UpdateDatabaseCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateDatabaseRequest;
43
+ output: UpdateDatabaseResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateDatabaseCommandInput;
47
+ output: UpdateDatabaseCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const UpdateTableCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class UpdateTableCommand extends UpdateTableCommand_base {}
36
+ export declare class UpdateTableCommand extends UpdateTableCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateTableRequest;
40
+ output: UpdateTableResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateTableCommandInput;
44
+ output: UpdateTableCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const WriteRecordsCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class WriteRecordsCommand extends WriteRecordsCommand_base {}
36
+ export declare class WriteRecordsCommand extends WriteRecordsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: WriteRecordsRequest;
40
+ output: WriteRecordsResponse;
41
+ };
42
+ sdk: {
43
+ input: WriteRecordsCommandInput;
44
+ output: WriteRecordsCommandOutput;
45
+ };
46
+ };
47
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-timestream-write",
3
3
  "description": "AWS SDK for JavaScript Timestream Write Client for Node.js, Browser and React Native",
4
- "version": "3.651.1",
4
+ "version": "3.658.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-timestream-write",
@@ -20,44 +20,44 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.651.1",
24
- "@aws-sdk/client-sts": "3.651.1",
25
- "@aws-sdk/core": "3.651.1",
26
- "@aws-sdk/credential-provider-node": "3.651.1",
27
- "@aws-sdk/middleware-endpoint-discovery": "3.649.0",
28
- "@aws-sdk/middleware-host-header": "3.649.0",
29
- "@aws-sdk/middleware-logger": "3.649.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.649.0",
31
- "@aws-sdk/middleware-user-agent": "3.649.0",
32
- "@aws-sdk/region-config-resolver": "3.649.0",
33
- "@aws-sdk/types": "3.649.0",
34
- "@aws-sdk/util-endpoints": "3.649.0",
35
- "@aws-sdk/util-user-agent-browser": "3.649.0",
36
- "@aws-sdk/util-user-agent-node": "3.649.0",
37
- "@smithy/config-resolver": "^3.0.6",
38
- "@smithy/core": "^2.4.1",
39
- "@smithy/fetch-http-handler": "^3.2.5",
40
- "@smithy/hash-node": "^3.0.4",
41
- "@smithy/invalid-dependency": "^3.0.4",
42
- "@smithy/middleware-content-length": "^3.0.6",
43
- "@smithy/middleware-endpoint": "^3.1.1",
44
- "@smithy/middleware-retry": "^3.0.16",
45
- "@smithy/middleware-serde": "^3.0.4",
46
- "@smithy/middleware-stack": "^3.0.4",
47
- "@smithy/node-config-provider": "^3.1.5",
48
- "@smithy/node-http-handler": "^3.2.0",
49
- "@smithy/protocol-http": "^4.1.1",
50
- "@smithy/smithy-client": "^3.3.0",
51
- "@smithy/types": "^3.4.0",
52
- "@smithy/url-parser": "^3.0.4",
23
+ "@aws-sdk/client-sso-oidc": "3.658.0",
24
+ "@aws-sdk/client-sts": "3.658.0",
25
+ "@aws-sdk/core": "3.658.0",
26
+ "@aws-sdk/credential-provider-node": "3.658.0",
27
+ "@aws-sdk/middleware-endpoint-discovery": "3.654.0",
28
+ "@aws-sdk/middleware-host-header": "3.654.0",
29
+ "@aws-sdk/middleware-logger": "3.654.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.654.0",
31
+ "@aws-sdk/middleware-user-agent": "3.654.0",
32
+ "@aws-sdk/region-config-resolver": "3.654.0",
33
+ "@aws-sdk/types": "3.654.0",
34
+ "@aws-sdk/util-endpoints": "3.654.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.654.0",
36
+ "@aws-sdk/util-user-agent-node": "3.654.0",
37
+ "@smithy/config-resolver": "^3.0.8",
38
+ "@smithy/core": "^2.4.3",
39
+ "@smithy/fetch-http-handler": "^3.2.7",
40
+ "@smithy/hash-node": "^3.0.6",
41
+ "@smithy/invalid-dependency": "^3.0.6",
42
+ "@smithy/middleware-content-length": "^3.0.8",
43
+ "@smithy/middleware-endpoint": "^3.1.3",
44
+ "@smithy/middleware-retry": "^3.0.18",
45
+ "@smithy/middleware-serde": "^3.0.6",
46
+ "@smithy/middleware-stack": "^3.0.6",
47
+ "@smithy/node-config-provider": "^3.1.7",
48
+ "@smithy/node-http-handler": "^3.2.2",
49
+ "@smithy/protocol-http": "^4.1.3",
50
+ "@smithy/smithy-client": "^3.3.2",
51
+ "@smithy/types": "^3.4.2",
52
+ "@smithy/url-parser": "^3.0.6",
53
53
  "@smithy/util-base64": "^3.0.0",
54
54
  "@smithy/util-body-length-browser": "^3.0.0",
55
55
  "@smithy/util-body-length-node": "^3.0.0",
56
- "@smithy/util-defaults-mode-browser": "^3.0.16",
57
- "@smithy/util-defaults-mode-node": "^3.0.16",
58
- "@smithy/util-endpoints": "^2.1.0",
59
- "@smithy/util-middleware": "^3.0.4",
60
- "@smithy/util-retry": "^3.0.4",
56
+ "@smithy/util-defaults-mode-browser": "^3.0.18",
57
+ "@smithy/util-defaults-mode-node": "^3.0.18",
58
+ "@smithy/util-endpoints": "^2.1.2",
59
+ "@smithy/util-middleware": "^3.0.6",
60
+ "@smithy/util-retry": "^3.0.6",
61
61
  "@smithy/util-utf8": "^3.0.0",
62
62
  "tslib": "^2.6.2",
63
63
  "uuid": "^9.0.1"