@aws-sdk/client-timestream-influxdb 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +62 -65
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDbClusterCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDbClustersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDbInstancesForClusterCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RebootDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/RebootDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -63,10 +63,7 @@ import {
|
|
|
63
63
|
RebootDbInstanceCommandInput,
|
|
64
64
|
RebootDbInstanceCommandOutput,
|
|
65
65
|
} from "./commands/RebootDbInstanceCommand";
|
|
66
|
-
import {
|
|
67
|
-
TagResourceCommandInput,
|
|
68
|
-
TagResourceCommandOutput,
|
|
69
|
-
} from "./commands/TagResourceCommand";
|
|
66
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
70
67
|
import {
|
|
71
68
|
UntagResourceCommandInput,
|
|
72
69
|
UntagResourceCommandOutput,
|
|
@@ -83,281 +80,281 @@ import { TimestreamInfluxDBClient } from "./TimestreamInfluxDBClient";
|
|
|
83
80
|
export interface TimestreamInfluxDB {
|
|
84
81
|
createDbCluster(
|
|
85
82
|
args: CreateDbClusterCommandInput,
|
|
86
|
-
options?: __HttpHandlerOptions
|
|
83
|
+
options?: __HttpHandlerOptions,
|
|
87
84
|
): Promise<CreateDbClusterCommandOutput>;
|
|
88
85
|
createDbCluster(
|
|
89
86
|
args: CreateDbClusterCommandInput,
|
|
90
|
-
cb: (err: any, data?: CreateDbClusterCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: CreateDbClusterCommandOutput) => void,
|
|
91
88
|
): void;
|
|
92
89
|
createDbCluster(
|
|
93
90
|
args: CreateDbClusterCommandInput,
|
|
94
91
|
options: __HttpHandlerOptions,
|
|
95
|
-
cb: (err: any, data?: CreateDbClusterCommandOutput) => void
|
|
92
|
+
cb: (err: any, data?: CreateDbClusterCommandOutput) => void,
|
|
96
93
|
): void;
|
|
97
94
|
createDbInstance(
|
|
98
95
|
args: CreateDbInstanceCommandInput,
|
|
99
|
-
options?: __HttpHandlerOptions
|
|
96
|
+
options?: __HttpHandlerOptions,
|
|
100
97
|
): Promise<CreateDbInstanceCommandOutput>;
|
|
101
98
|
createDbInstance(
|
|
102
99
|
args: CreateDbInstanceCommandInput,
|
|
103
|
-
cb: (err: any, data?: CreateDbInstanceCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: CreateDbInstanceCommandOutput) => void,
|
|
104
101
|
): void;
|
|
105
102
|
createDbInstance(
|
|
106
103
|
args: CreateDbInstanceCommandInput,
|
|
107
104
|
options: __HttpHandlerOptions,
|
|
108
|
-
cb: (err: any, data?: CreateDbInstanceCommandOutput) => void
|
|
105
|
+
cb: (err: any, data?: CreateDbInstanceCommandOutput) => void,
|
|
109
106
|
): void;
|
|
110
107
|
createDbParameterGroup(
|
|
111
108
|
args: CreateDbParameterGroupCommandInput,
|
|
112
|
-
options?: __HttpHandlerOptions
|
|
109
|
+
options?: __HttpHandlerOptions,
|
|
113
110
|
): Promise<CreateDbParameterGroupCommandOutput>;
|
|
114
111
|
createDbParameterGroup(
|
|
115
112
|
args: CreateDbParameterGroupCommandInput,
|
|
116
|
-
cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void,
|
|
117
114
|
): void;
|
|
118
115
|
createDbParameterGroup(
|
|
119
116
|
args: CreateDbParameterGroupCommandInput,
|
|
120
117
|
options: __HttpHandlerOptions,
|
|
121
|
-
cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void
|
|
118
|
+
cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void,
|
|
122
119
|
): void;
|
|
123
120
|
deleteDbCluster(
|
|
124
121
|
args: DeleteDbClusterCommandInput,
|
|
125
|
-
options?: __HttpHandlerOptions
|
|
122
|
+
options?: __HttpHandlerOptions,
|
|
126
123
|
): Promise<DeleteDbClusterCommandOutput>;
|
|
127
124
|
deleteDbCluster(
|
|
128
125
|
args: DeleteDbClusterCommandInput,
|
|
129
|
-
cb: (err: any, data?: DeleteDbClusterCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: DeleteDbClusterCommandOutput) => void,
|
|
130
127
|
): void;
|
|
131
128
|
deleteDbCluster(
|
|
132
129
|
args: DeleteDbClusterCommandInput,
|
|
133
130
|
options: __HttpHandlerOptions,
|
|
134
|
-
cb: (err: any, data?: DeleteDbClusterCommandOutput) => void
|
|
131
|
+
cb: (err: any, data?: DeleteDbClusterCommandOutput) => void,
|
|
135
132
|
): void;
|
|
136
133
|
deleteDbInstance(
|
|
137
134
|
args: DeleteDbInstanceCommandInput,
|
|
138
|
-
options?: __HttpHandlerOptions
|
|
135
|
+
options?: __HttpHandlerOptions,
|
|
139
136
|
): Promise<DeleteDbInstanceCommandOutput>;
|
|
140
137
|
deleteDbInstance(
|
|
141
138
|
args: DeleteDbInstanceCommandInput,
|
|
142
|
-
cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void,
|
|
143
140
|
): void;
|
|
144
141
|
deleteDbInstance(
|
|
145
142
|
args: DeleteDbInstanceCommandInput,
|
|
146
143
|
options: __HttpHandlerOptions,
|
|
147
|
-
cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void
|
|
144
|
+
cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void,
|
|
148
145
|
): void;
|
|
149
146
|
getDbCluster(
|
|
150
147
|
args: GetDbClusterCommandInput,
|
|
151
|
-
options?: __HttpHandlerOptions
|
|
148
|
+
options?: __HttpHandlerOptions,
|
|
152
149
|
): Promise<GetDbClusterCommandOutput>;
|
|
153
150
|
getDbCluster(
|
|
154
151
|
args: GetDbClusterCommandInput,
|
|
155
|
-
cb: (err: any, data?: GetDbClusterCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: GetDbClusterCommandOutput) => void,
|
|
156
153
|
): void;
|
|
157
154
|
getDbCluster(
|
|
158
155
|
args: GetDbClusterCommandInput,
|
|
159
156
|
options: __HttpHandlerOptions,
|
|
160
|
-
cb: (err: any, data?: GetDbClusterCommandOutput) => void
|
|
157
|
+
cb: (err: any, data?: GetDbClusterCommandOutput) => void,
|
|
161
158
|
): void;
|
|
162
159
|
getDbInstance(
|
|
163
160
|
args: GetDbInstanceCommandInput,
|
|
164
|
-
options?: __HttpHandlerOptions
|
|
161
|
+
options?: __HttpHandlerOptions,
|
|
165
162
|
): Promise<GetDbInstanceCommandOutput>;
|
|
166
163
|
getDbInstance(
|
|
167
164
|
args: GetDbInstanceCommandInput,
|
|
168
|
-
cb: (err: any, data?: GetDbInstanceCommandOutput) => void
|
|
165
|
+
cb: (err: any, data?: GetDbInstanceCommandOutput) => void,
|
|
169
166
|
): void;
|
|
170
167
|
getDbInstance(
|
|
171
168
|
args: GetDbInstanceCommandInput,
|
|
172
169
|
options: __HttpHandlerOptions,
|
|
173
|
-
cb: (err: any, data?: GetDbInstanceCommandOutput) => void
|
|
170
|
+
cb: (err: any, data?: GetDbInstanceCommandOutput) => void,
|
|
174
171
|
): void;
|
|
175
172
|
getDbParameterGroup(
|
|
176
173
|
args: GetDbParameterGroupCommandInput,
|
|
177
|
-
options?: __HttpHandlerOptions
|
|
174
|
+
options?: __HttpHandlerOptions,
|
|
178
175
|
): Promise<GetDbParameterGroupCommandOutput>;
|
|
179
176
|
getDbParameterGroup(
|
|
180
177
|
args: GetDbParameterGroupCommandInput,
|
|
181
|
-
cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void,
|
|
182
179
|
): void;
|
|
183
180
|
getDbParameterGroup(
|
|
184
181
|
args: GetDbParameterGroupCommandInput,
|
|
185
182
|
options: __HttpHandlerOptions,
|
|
186
|
-
cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void
|
|
183
|
+
cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void,
|
|
187
184
|
): void;
|
|
188
185
|
listDbClusters(): Promise<ListDbClustersCommandOutput>;
|
|
189
186
|
listDbClusters(
|
|
190
187
|
args: ListDbClustersCommandInput,
|
|
191
|
-
options?: __HttpHandlerOptions
|
|
188
|
+
options?: __HttpHandlerOptions,
|
|
192
189
|
): Promise<ListDbClustersCommandOutput>;
|
|
193
190
|
listDbClusters(
|
|
194
191
|
args: ListDbClustersCommandInput,
|
|
195
|
-
cb: (err: any, data?: ListDbClustersCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: ListDbClustersCommandOutput) => void,
|
|
196
193
|
): void;
|
|
197
194
|
listDbClusters(
|
|
198
195
|
args: ListDbClustersCommandInput,
|
|
199
196
|
options: __HttpHandlerOptions,
|
|
200
|
-
cb: (err: any, data?: ListDbClustersCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: ListDbClustersCommandOutput) => void,
|
|
201
198
|
): void;
|
|
202
199
|
listDbInstances(): Promise<ListDbInstancesCommandOutput>;
|
|
203
200
|
listDbInstances(
|
|
204
201
|
args: ListDbInstancesCommandInput,
|
|
205
|
-
options?: __HttpHandlerOptions
|
|
202
|
+
options?: __HttpHandlerOptions,
|
|
206
203
|
): Promise<ListDbInstancesCommandOutput>;
|
|
207
204
|
listDbInstances(
|
|
208
205
|
args: ListDbInstancesCommandInput,
|
|
209
|
-
cb: (err: any, data?: ListDbInstancesCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: ListDbInstancesCommandOutput) => void,
|
|
210
207
|
): void;
|
|
211
208
|
listDbInstances(
|
|
212
209
|
args: ListDbInstancesCommandInput,
|
|
213
210
|
options: __HttpHandlerOptions,
|
|
214
|
-
cb: (err: any, data?: ListDbInstancesCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: ListDbInstancesCommandOutput) => void,
|
|
215
212
|
): void;
|
|
216
213
|
listDbInstancesForCluster(
|
|
217
214
|
args: ListDbInstancesForClusterCommandInput,
|
|
218
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
219
216
|
): Promise<ListDbInstancesForClusterCommandOutput>;
|
|
220
217
|
listDbInstancesForCluster(
|
|
221
218
|
args: ListDbInstancesForClusterCommandInput,
|
|
222
|
-
cb: (err: any, data?: ListDbInstancesForClusterCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: ListDbInstancesForClusterCommandOutput) => void,
|
|
223
220
|
): void;
|
|
224
221
|
listDbInstancesForCluster(
|
|
225
222
|
args: ListDbInstancesForClusterCommandInput,
|
|
226
223
|
options: __HttpHandlerOptions,
|
|
227
|
-
cb: (err: any, data?: ListDbInstancesForClusterCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: ListDbInstancesForClusterCommandOutput) => void,
|
|
228
225
|
): void;
|
|
229
226
|
listDbParameterGroups(): Promise<ListDbParameterGroupsCommandOutput>;
|
|
230
227
|
listDbParameterGroups(
|
|
231
228
|
args: ListDbParameterGroupsCommandInput,
|
|
232
|
-
options?: __HttpHandlerOptions
|
|
229
|
+
options?: __HttpHandlerOptions,
|
|
233
230
|
): Promise<ListDbParameterGroupsCommandOutput>;
|
|
234
231
|
listDbParameterGroups(
|
|
235
232
|
args: ListDbParameterGroupsCommandInput,
|
|
236
|
-
cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void
|
|
233
|
+
cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void,
|
|
237
234
|
): void;
|
|
238
235
|
listDbParameterGroups(
|
|
239
236
|
args: ListDbParameterGroupsCommandInput,
|
|
240
237
|
options: __HttpHandlerOptions,
|
|
241
|
-
cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void
|
|
238
|
+
cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void,
|
|
242
239
|
): void;
|
|
243
240
|
listTagsForResource(
|
|
244
241
|
args: ListTagsForResourceCommandInput,
|
|
245
|
-
options?: __HttpHandlerOptions
|
|
242
|
+
options?: __HttpHandlerOptions,
|
|
246
243
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
247
244
|
listTagsForResource(
|
|
248
245
|
args: ListTagsForResourceCommandInput,
|
|
249
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
246
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
250
247
|
): void;
|
|
251
248
|
listTagsForResource(
|
|
252
249
|
args: ListTagsForResourceCommandInput,
|
|
253
250
|
options: __HttpHandlerOptions,
|
|
254
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
251
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
255
252
|
): void;
|
|
256
253
|
rebootDbCluster(
|
|
257
254
|
args: RebootDbClusterCommandInput,
|
|
258
|
-
options?: __HttpHandlerOptions
|
|
255
|
+
options?: __HttpHandlerOptions,
|
|
259
256
|
): Promise<RebootDbClusterCommandOutput>;
|
|
260
257
|
rebootDbCluster(
|
|
261
258
|
args: RebootDbClusterCommandInput,
|
|
262
|
-
cb: (err: any, data?: RebootDbClusterCommandOutput) => void
|
|
259
|
+
cb: (err: any, data?: RebootDbClusterCommandOutput) => void,
|
|
263
260
|
): void;
|
|
264
261
|
rebootDbCluster(
|
|
265
262
|
args: RebootDbClusterCommandInput,
|
|
266
263
|
options: __HttpHandlerOptions,
|
|
267
|
-
cb: (err: any, data?: RebootDbClusterCommandOutput) => void
|
|
264
|
+
cb: (err: any, data?: RebootDbClusterCommandOutput) => void,
|
|
268
265
|
): void;
|
|
269
266
|
rebootDbInstance(
|
|
270
267
|
args: RebootDbInstanceCommandInput,
|
|
271
|
-
options?: __HttpHandlerOptions
|
|
268
|
+
options?: __HttpHandlerOptions,
|
|
272
269
|
): Promise<RebootDbInstanceCommandOutput>;
|
|
273
270
|
rebootDbInstance(
|
|
274
271
|
args: RebootDbInstanceCommandInput,
|
|
275
|
-
cb: (err: any, data?: RebootDbInstanceCommandOutput) => void
|
|
272
|
+
cb: (err: any, data?: RebootDbInstanceCommandOutput) => void,
|
|
276
273
|
): void;
|
|
277
274
|
rebootDbInstance(
|
|
278
275
|
args: RebootDbInstanceCommandInput,
|
|
279
276
|
options: __HttpHandlerOptions,
|
|
280
|
-
cb: (err: any, data?: RebootDbInstanceCommandOutput) => void
|
|
277
|
+
cb: (err: any, data?: RebootDbInstanceCommandOutput) => void,
|
|
281
278
|
): void;
|
|
282
279
|
tagResource(
|
|
283
280
|
args: TagResourceCommandInput,
|
|
284
|
-
options?: __HttpHandlerOptions
|
|
281
|
+
options?: __HttpHandlerOptions,
|
|
285
282
|
): Promise<TagResourceCommandOutput>;
|
|
286
283
|
tagResource(
|
|
287
284
|
args: TagResourceCommandInput,
|
|
288
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
285
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
289
286
|
): void;
|
|
290
287
|
tagResource(
|
|
291
288
|
args: TagResourceCommandInput,
|
|
292
289
|
options: __HttpHandlerOptions,
|
|
293
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
290
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
294
291
|
): void;
|
|
295
292
|
untagResource(
|
|
296
293
|
args: UntagResourceCommandInput,
|
|
297
|
-
options?: __HttpHandlerOptions
|
|
294
|
+
options?: __HttpHandlerOptions,
|
|
298
295
|
): Promise<UntagResourceCommandOutput>;
|
|
299
296
|
untagResource(
|
|
300
297
|
args: UntagResourceCommandInput,
|
|
301
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
298
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
302
299
|
): void;
|
|
303
300
|
untagResource(
|
|
304
301
|
args: UntagResourceCommandInput,
|
|
305
302
|
options: __HttpHandlerOptions,
|
|
306
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
303
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
307
304
|
): void;
|
|
308
305
|
updateDbCluster(
|
|
309
306
|
args: UpdateDbClusterCommandInput,
|
|
310
|
-
options?: __HttpHandlerOptions
|
|
307
|
+
options?: __HttpHandlerOptions,
|
|
311
308
|
): Promise<UpdateDbClusterCommandOutput>;
|
|
312
309
|
updateDbCluster(
|
|
313
310
|
args: UpdateDbClusterCommandInput,
|
|
314
|
-
cb: (err: any, data?: UpdateDbClusterCommandOutput) => void
|
|
311
|
+
cb: (err: any, data?: UpdateDbClusterCommandOutput) => void,
|
|
315
312
|
): void;
|
|
316
313
|
updateDbCluster(
|
|
317
314
|
args: UpdateDbClusterCommandInput,
|
|
318
315
|
options: __HttpHandlerOptions,
|
|
319
|
-
cb: (err: any, data?: UpdateDbClusterCommandOutput) => void
|
|
316
|
+
cb: (err: any, data?: UpdateDbClusterCommandOutput) => void,
|
|
320
317
|
): void;
|
|
321
318
|
updateDbInstance(
|
|
322
319
|
args: UpdateDbInstanceCommandInput,
|
|
323
|
-
options?: __HttpHandlerOptions
|
|
320
|
+
options?: __HttpHandlerOptions,
|
|
324
321
|
): Promise<UpdateDbInstanceCommandOutput>;
|
|
325
322
|
updateDbInstance(
|
|
326
323
|
args: UpdateDbInstanceCommandInput,
|
|
327
|
-
cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void
|
|
324
|
+
cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void,
|
|
328
325
|
): void;
|
|
329
326
|
updateDbInstance(
|
|
330
327
|
args: UpdateDbInstanceCommandInput,
|
|
331
328
|
options: __HttpHandlerOptions,
|
|
332
|
-
cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void
|
|
329
|
+
cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void,
|
|
333
330
|
): void;
|
|
334
331
|
paginateListDbClusters(
|
|
335
332
|
args?: ListDbClustersCommandInput,
|
|
336
333
|
paginationConfig?: Pick<
|
|
337
334
|
PaginationConfiguration,
|
|
338
335
|
Exclude<keyof PaginationConfiguration, "client">
|
|
339
|
-
|
|
336
|
+
>,
|
|
340
337
|
): Paginator<ListDbClustersCommandOutput>;
|
|
341
338
|
paginateListDbInstances(
|
|
342
339
|
args?: ListDbInstancesCommandInput,
|
|
343
340
|
paginationConfig?: Pick<
|
|
344
341
|
PaginationConfiguration,
|
|
345
342
|
Exclude<keyof PaginationConfiguration, "client">
|
|
346
|
-
|
|
343
|
+
>,
|
|
347
344
|
): Paginator<ListDbInstancesCommandOutput>;
|
|
348
345
|
paginateListDbInstancesForCluster(
|
|
349
346
|
args: ListDbInstancesForClusterCommandInput,
|
|
350
347
|
paginationConfig?: Pick<
|
|
351
348
|
PaginationConfiguration,
|
|
352
349
|
Exclude<keyof PaginationConfiguration, "client">
|
|
353
|
-
|
|
350
|
+
>,
|
|
354
351
|
): Paginator<ListDbInstancesForClusterCommandOutput>;
|
|
355
352
|
paginateListDbParameterGroups(
|
|
356
353
|
args?: ListDbParameterGroupsCommandInput,
|
|
357
354
|
paginationConfig?: Pick<
|
|
358
355
|
PaginationConfiguration,
|
|
359
356
|
Exclude<keyof PaginationConfiguration, "client">
|
|
360
|
-
|
|
357
|
+
>,
|
|
361
358
|
): Paginator<ListDbParameterGroupsCommandOutput>;
|
|
362
359
|
}
|
|
363
360
|
export declare class TimestreamInfluxDB
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -96,10 +93,7 @@ import {
|
|
|
96
93
|
RebootDbInstanceCommandInput,
|
|
97
94
|
RebootDbInstanceCommandOutput,
|
|
98
95
|
} from "./commands/RebootDbInstanceCommand";
|
|
99
|
-
import {
|
|
100
|
-
TagResourceCommandInput,
|
|
101
|
-
TagResourceCommandOutput,
|
|
102
|
-
} from "./commands/TagResourceCommand";
|
|
96
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
103
97
|
import {
|
|
104
98
|
UntagResourceCommandInput,
|
|
105
99
|
UntagResourceCommandOutput,
|
|
@@ -159,8 +153,7 @@ export type ServiceOutputTypes =
|
|
|
159
153
|
| UntagResourceCommandOutput
|
|
160
154
|
| UpdateDbClusterCommandOutput
|
|
161
155
|
| UpdateDbInstanceCommandOutput;
|
|
162
|
-
export interface ClientDefaults
|
|
163
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
156
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
164
157
|
requestHandler?: __HttpHandlerUserInput;
|
|
165
158
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
166
159
|
urlParser?: __UrlParser;
|
|
@@ -196,8 +189,7 @@ export type TimestreamInfluxDBClientConfigType = Partial<
|
|
|
196
189
|
EndpointInputConfig<EndpointParameters> &
|
|
197
190
|
HttpAuthSchemeInputConfig &
|
|
198
191
|
ClientInputEndpointParameters;
|
|
199
|
-
export interface TimestreamInfluxDBClientConfig
|
|
200
|
-
extends TimestreamInfluxDBClientConfigType {}
|
|
192
|
+
export interface TimestreamInfluxDBClientConfig extends TimestreamInfluxDBClientConfigType {}
|
|
201
193
|
export type TimestreamInfluxDBClientResolvedConfigType =
|
|
202
194
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
203
195
|
Required<ClientDefaults> &
|
|
@@ -209,8 +201,7 @@ export type TimestreamInfluxDBClientResolvedConfigType =
|
|
|
209
201
|
EndpointResolvedConfig<EndpointParameters> &
|
|
210
202
|
HttpAuthSchemeResolvedConfig &
|
|
211
203
|
ClientResolvedEndpointParameters;
|
|
212
|
-
export interface TimestreamInfluxDBClientResolvedConfig
|
|
213
|
-
extends TimestreamInfluxDBClientResolvedConfigType {}
|
|
204
|
+
export interface TimestreamInfluxDBClientResolvedConfig extends TimestreamInfluxDBClientResolvedConfigType {}
|
|
214
205
|
export declare class TimestreamInfluxDBClient extends __Client<
|
|
215
206
|
__HttpHandlerOptions,
|
|
216
207
|
ServiceInputTypes,
|
|
@@ -218,10 +209,6 @@ export declare class TimestreamInfluxDBClient extends __Client<
|
|
|
218
209
|
TimestreamInfluxDBClientResolvedConfig
|
|
219
210
|
> {
|
|
220
211
|
readonly config: TimestreamInfluxDBClientResolvedConfig;
|
|
221
|
-
constructor(
|
|
222
|
-
...[
|
|
223
|
-
configuration,
|
|
224
|
-
]: __CheckOptionalClientConfig<TimestreamInfluxDBClientConfig>
|
|
225
|
-
);
|
|
212
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<TimestreamInfluxDBClientConfig>);
|
|
226
213
|
destroy(): void;
|
|
227
214
|
}
|
|
@@ -7,17 +7,10 @@ import { TimestreamInfluxDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvid
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
15
|
-
export interface TimestreamInfluxDBHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface TimestreamInfluxDBHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface TimestreamInfluxDBHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface TimestreamInfluxDBHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
TimestreamInfluxDBHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: TimestreamInfluxDBClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<TimestreamInfluxDBHttpAuthSchemeParameters>;
|
|
31
|
-
export interface TimestreamInfluxDBHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<TimestreamInfluxDBHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface TimestreamInfluxDBHttpAuthSchemeProvider extends HttpAuthSchemeProvider<TimestreamInfluxDBHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultTimestreamInfluxDBHttpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
TimestreamInfluxDBClientResolvedConfig,
|
|
6
6
|
} from "./TimestreamInfluxDBClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
TimestreamInfluxDBClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateDbClusterInput,
|
|
4
|
-
CreateDbClusterOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateDbClusterInput, CreateDbClusterOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateDbClusterCommandInput extends CreateDbClusterInput {}
|
|
8
|
-
export interface CreateDbClusterCommandOutput
|
|
9
|
-
extends CreateDbClusterOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateDbClusterCommandOutput extends CreateDbClusterOutput, __MetadataBearer {}
|
|
11
6
|
declare const CreateDbClusterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateDbClusterCommandInput
|
|
8
|
+
input: CreateDbClusterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateDbClusterCommandInput,
|
|
16
11
|
CreateDbClusterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateDbClusterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateDbClusterCommandInput
|
|
17
|
+
input: CreateDbClusterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateDbClusterCommandInput,
|
|
25
20
|
CreateDbClusterCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateDbInstanceInput,
|
|
4
|
-
CreateDbInstanceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateDbInstanceInput, CreateDbInstanceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateDbInstanceCommandInput extends CreateDbInstanceInput {}
|
|
8
|
-
export interface CreateDbInstanceCommandOutput
|
|
9
|
-
extends CreateDbInstanceOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateDbInstanceCommandOutput extends CreateDbInstanceOutput, __MetadataBearer {}
|
|
11
6
|
declare const CreateDbInstanceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateDbInstanceCommandInput
|
|
8
|
+
input: CreateDbInstanceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateDbInstanceCommandInput,
|
|
16
11
|
CreateDbInstanceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateDbInstanceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateDbInstanceCommandInput
|
|
17
|
+
input: CreateDbInstanceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateDbInstanceCommandInput,
|
|
25
20
|
CreateDbInstanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateDbParameterGroupInput,
|
|
4
|
-
CreateDbParameterGroupOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateDbParameterGroupInput, CreateDbParameterGroupOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateDbParameterGroupCommandInput
|
|
8
|
-
extends CreateDbParameterGroupInput {}
|
|
4
|
+
export interface CreateDbParameterGroupCommandInput extends CreateDbParameterGroupInput {}
|
|
9
5
|
export interface CreateDbParameterGroupCommandOutput
|
|
10
|
-
extends CreateDbParameterGroupOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateDbParameterGroupOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateDbParameterGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateDbParameterGroupCommandInput
|
|
9
|
+
input: CreateDbParameterGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateDbParameterGroupCommandInput,
|
|
17
12
|
CreateDbParameterGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateDbParameterGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateDbParameterGroupCommandInput
|
|
18
|
+
input: CreateDbParameterGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateDbParameterGroupCommandInput,
|
|
26
21
|
CreateDbParameterGroupCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteDbClusterInput,
|
|
4
|
-
DeleteDbClusterOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteDbClusterInput, DeleteDbClusterOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteDbClusterCommandInput extends DeleteDbClusterInput {}
|
|
8
|
-
export interface DeleteDbClusterCommandOutput
|
|
9
|
-
extends DeleteDbClusterOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDbClusterCommandOutput extends DeleteDbClusterOutput, __MetadataBearer {}
|
|
11
6
|
declare const DeleteDbClusterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteDbClusterCommandInput
|
|
8
|
+
input: DeleteDbClusterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteDbClusterCommandInput,
|
|
16
11
|
DeleteDbClusterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteDbClusterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteDbClusterCommandInput
|
|
17
|
+
input: DeleteDbClusterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteDbClusterCommandInput,
|
|
25
20
|
DeleteDbClusterCommandOutput,
|