@aws-sdk/client-dax 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/DAX.d.ts +66 -78
- package/dist-types/ts3.4/DAXClient.d.ts +16 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +5 -10
- 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/errors.d.ts +23 -93
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -55,18 +55,9 @@ import {
|
|
|
55
55
|
IncreaseReplicationFactorCommandInput,
|
|
56
56
|
IncreaseReplicationFactorCommandOutput,
|
|
57
57
|
} from "./commands/IncreaseReplicationFactorCommand";
|
|
58
|
-
import {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
} from "./commands/ListTagsCommand";
|
|
62
|
-
import {
|
|
63
|
-
RebootNodeCommandInput,
|
|
64
|
-
RebootNodeCommandOutput,
|
|
65
|
-
} from "./commands/RebootNodeCommand";
|
|
66
|
-
import {
|
|
67
|
-
TagResourceCommandInput,
|
|
68
|
-
TagResourceCommandOutput,
|
|
69
|
-
} from "./commands/TagResourceCommand";
|
|
58
|
+
import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
|
|
59
|
+
import { RebootNodeCommandInput, RebootNodeCommandOutput } from "./commands/RebootNodeCommand";
|
|
60
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
70
61
|
import {
|
|
71
62
|
UntagResourceCommandInput,
|
|
72
63
|
UntagResourceCommandOutput,
|
|
@@ -87,281 +78,278 @@ import { DAXClient } from "./DAXClient";
|
|
|
87
78
|
export interface DAX {
|
|
88
79
|
createCluster(
|
|
89
80
|
args: CreateClusterCommandInput,
|
|
90
|
-
options?: __HttpHandlerOptions
|
|
81
|
+
options?: __HttpHandlerOptions,
|
|
91
82
|
): Promise<CreateClusterCommandOutput>;
|
|
92
83
|
createCluster(
|
|
93
84
|
args: CreateClusterCommandInput,
|
|
94
|
-
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
85
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void,
|
|
95
86
|
): void;
|
|
96
87
|
createCluster(
|
|
97
88
|
args: CreateClusterCommandInput,
|
|
98
89
|
options: __HttpHandlerOptions,
|
|
99
|
-
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
90
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void,
|
|
100
91
|
): void;
|
|
101
92
|
createParameterGroup(
|
|
102
93
|
args: CreateParameterGroupCommandInput,
|
|
103
|
-
options?: __HttpHandlerOptions
|
|
94
|
+
options?: __HttpHandlerOptions,
|
|
104
95
|
): Promise<CreateParameterGroupCommandOutput>;
|
|
105
96
|
createParameterGroup(
|
|
106
97
|
args: CreateParameterGroupCommandInput,
|
|
107
|
-
cb: (err: any, data?: CreateParameterGroupCommandOutput) => void
|
|
98
|
+
cb: (err: any, data?: CreateParameterGroupCommandOutput) => void,
|
|
108
99
|
): void;
|
|
109
100
|
createParameterGroup(
|
|
110
101
|
args: CreateParameterGroupCommandInput,
|
|
111
102
|
options: __HttpHandlerOptions,
|
|
112
|
-
cb: (err: any, data?: CreateParameterGroupCommandOutput) => void
|
|
103
|
+
cb: (err: any, data?: CreateParameterGroupCommandOutput) => void,
|
|
113
104
|
): void;
|
|
114
105
|
createSubnetGroup(
|
|
115
106
|
args: CreateSubnetGroupCommandInput,
|
|
116
|
-
options?: __HttpHandlerOptions
|
|
107
|
+
options?: __HttpHandlerOptions,
|
|
117
108
|
): Promise<CreateSubnetGroupCommandOutput>;
|
|
118
109
|
createSubnetGroup(
|
|
119
110
|
args: CreateSubnetGroupCommandInput,
|
|
120
|
-
cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void
|
|
111
|
+
cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void,
|
|
121
112
|
): void;
|
|
122
113
|
createSubnetGroup(
|
|
123
114
|
args: CreateSubnetGroupCommandInput,
|
|
124
115
|
options: __HttpHandlerOptions,
|
|
125
|
-
cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void
|
|
116
|
+
cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void,
|
|
126
117
|
): void;
|
|
127
118
|
decreaseReplicationFactor(
|
|
128
119
|
args: DecreaseReplicationFactorCommandInput,
|
|
129
|
-
options?: __HttpHandlerOptions
|
|
120
|
+
options?: __HttpHandlerOptions,
|
|
130
121
|
): Promise<DecreaseReplicationFactorCommandOutput>;
|
|
131
122
|
decreaseReplicationFactor(
|
|
132
123
|
args: DecreaseReplicationFactorCommandInput,
|
|
133
|
-
cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void
|
|
124
|
+
cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void,
|
|
134
125
|
): void;
|
|
135
126
|
decreaseReplicationFactor(
|
|
136
127
|
args: DecreaseReplicationFactorCommandInput,
|
|
137
128
|
options: __HttpHandlerOptions,
|
|
138
|
-
cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void,
|
|
139
130
|
): void;
|
|
140
131
|
deleteCluster(
|
|
141
132
|
args: DeleteClusterCommandInput,
|
|
142
|
-
options?: __HttpHandlerOptions
|
|
133
|
+
options?: __HttpHandlerOptions,
|
|
143
134
|
): Promise<DeleteClusterCommandOutput>;
|
|
144
135
|
deleteCluster(
|
|
145
136
|
args: DeleteClusterCommandInput,
|
|
146
|
-
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
137
|
+
cb: (err: any, data?: DeleteClusterCommandOutput) => void,
|
|
147
138
|
): void;
|
|
148
139
|
deleteCluster(
|
|
149
140
|
args: DeleteClusterCommandInput,
|
|
150
141
|
options: __HttpHandlerOptions,
|
|
151
|
-
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
142
|
+
cb: (err: any, data?: DeleteClusterCommandOutput) => void,
|
|
152
143
|
): void;
|
|
153
144
|
deleteParameterGroup(
|
|
154
145
|
args: DeleteParameterGroupCommandInput,
|
|
155
|
-
options?: __HttpHandlerOptions
|
|
146
|
+
options?: __HttpHandlerOptions,
|
|
156
147
|
): Promise<DeleteParameterGroupCommandOutput>;
|
|
157
148
|
deleteParameterGroup(
|
|
158
149
|
args: DeleteParameterGroupCommandInput,
|
|
159
|
-
cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void
|
|
150
|
+
cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void,
|
|
160
151
|
): void;
|
|
161
152
|
deleteParameterGroup(
|
|
162
153
|
args: DeleteParameterGroupCommandInput,
|
|
163
154
|
options: __HttpHandlerOptions,
|
|
164
|
-
cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void
|
|
155
|
+
cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void,
|
|
165
156
|
): void;
|
|
166
157
|
deleteSubnetGroup(
|
|
167
158
|
args: DeleteSubnetGroupCommandInput,
|
|
168
|
-
options?: __HttpHandlerOptions
|
|
159
|
+
options?: __HttpHandlerOptions,
|
|
169
160
|
): Promise<DeleteSubnetGroupCommandOutput>;
|
|
170
161
|
deleteSubnetGroup(
|
|
171
162
|
args: DeleteSubnetGroupCommandInput,
|
|
172
|
-
cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void
|
|
163
|
+
cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void,
|
|
173
164
|
): void;
|
|
174
165
|
deleteSubnetGroup(
|
|
175
166
|
args: DeleteSubnetGroupCommandInput,
|
|
176
167
|
options: __HttpHandlerOptions,
|
|
177
|
-
cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void
|
|
168
|
+
cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void,
|
|
178
169
|
): void;
|
|
179
170
|
describeClusters(): Promise<DescribeClustersCommandOutput>;
|
|
180
171
|
describeClusters(
|
|
181
172
|
args: DescribeClustersCommandInput,
|
|
182
|
-
options?: __HttpHandlerOptions
|
|
173
|
+
options?: __HttpHandlerOptions,
|
|
183
174
|
): Promise<DescribeClustersCommandOutput>;
|
|
184
175
|
describeClusters(
|
|
185
176
|
args: DescribeClustersCommandInput,
|
|
186
|
-
cb: (err: any, data?: DescribeClustersCommandOutput) => void
|
|
177
|
+
cb: (err: any, data?: DescribeClustersCommandOutput) => void,
|
|
187
178
|
): void;
|
|
188
179
|
describeClusters(
|
|
189
180
|
args: DescribeClustersCommandInput,
|
|
190
181
|
options: __HttpHandlerOptions,
|
|
191
|
-
cb: (err: any, data?: DescribeClustersCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: DescribeClustersCommandOutput) => void,
|
|
192
183
|
): void;
|
|
193
184
|
describeDefaultParameters(): Promise<DescribeDefaultParametersCommandOutput>;
|
|
194
185
|
describeDefaultParameters(
|
|
195
186
|
args: DescribeDefaultParametersCommandInput,
|
|
196
|
-
options?: __HttpHandlerOptions
|
|
187
|
+
options?: __HttpHandlerOptions,
|
|
197
188
|
): Promise<DescribeDefaultParametersCommandOutput>;
|
|
198
189
|
describeDefaultParameters(
|
|
199
190
|
args: DescribeDefaultParametersCommandInput,
|
|
200
|
-
cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void,
|
|
201
192
|
): void;
|
|
202
193
|
describeDefaultParameters(
|
|
203
194
|
args: DescribeDefaultParametersCommandInput,
|
|
204
195
|
options: __HttpHandlerOptions,
|
|
205
|
-
cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void,
|
|
206
197
|
): void;
|
|
207
198
|
describeEvents(): Promise<DescribeEventsCommandOutput>;
|
|
208
199
|
describeEvents(
|
|
209
200
|
args: DescribeEventsCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
211
202
|
): Promise<DescribeEventsCommandOutput>;
|
|
212
203
|
describeEvents(
|
|
213
204
|
args: DescribeEventsCommandInput,
|
|
214
|
-
cb: (err: any, data?: DescribeEventsCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: DescribeEventsCommandOutput) => void,
|
|
215
206
|
): void;
|
|
216
207
|
describeEvents(
|
|
217
208
|
args: DescribeEventsCommandInput,
|
|
218
209
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: DescribeEventsCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: DescribeEventsCommandOutput) => void,
|
|
220
211
|
): void;
|
|
221
212
|
describeParameterGroups(): Promise<DescribeParameterGroupsCommandOutput>;
|
|
222
213
|
describeParameterGroups(
|
|
223
214
|
args: DescribeParameterGroupsCommandInput,
|
|
224
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
225
216
|
): Promise<DescribeParameterGroupsCommandOutput>;
|
|
226
217
|
describeParameterGroups(
|
|
227
218
|
args: DescribeParameterGroupsCommandInput,
|
|
228
|
-
cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void,
|
|
229
220
|
): void;
|
|
230
221
|
describeParameterGroups(
|
|
231
222
|
args: DescribeParameterGroupsCommandInput,
|
|
232
223
|
options: __HttpHandlerOptions,
|
|
233
|
-
cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void,
|
|
234
225
|
): void;
|
|
235
226
|
describeParameters(
|
|
236
227
|
args: DescribeParametersCommandInput,
|
|
237
|
-
options?: __HttpHandlerOptions
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
238
229
|
): Promise<DescribeParametersCommandOutput>;
|
|
239
230
|
describeParameters(
|
|
240
231
|
args: DescribeParametersCommandInput,
|
|
241
|
-
cb: (err: any, data?: DescribeParametersCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: DescribeParametersCommandOutput) => void,
|
|
242
233
|
): void;
|
|
243
234
|
describeParameters(
|
|
244
235
|
args: DescribeParametersCommandInput,
|
|
245
236
|
options: __HttpHandlerOptions,
|
|
246
|
-
cb: (err: any, data?: DescribeParametersCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: DescribeParametersCommandOutput) => void,
|
|
247
238
|
): void;
|
|
248
239
|
describeSubnetGroups(): Promise<DescribeSubnetGroupsCommandOutput>;
|
|
249
240
|
describeSubnetGroups(
|
|
250
241
|
args: DescribeSubnetGroupsCommandInput,
|
|
251
|
-
options?: __HttpHandlerOptions
|
|
242
|
+
options?: __HttpHandlerOptions,
|
|
252
243
|
): Promise<DescribeSubnetGroupsCommandOutput>;
|
|
253
244
|
describeSubnetGroups(
|
|
254
245
|
args: DescribeSubnetGroupsCommandInput,
|
|
255
|
-
cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void
|
|
246
|
+
cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void,
|
|
256
247
|
): void;
|
|
257
248
|
describeSubnetGroups(
|
|
258
249
|
args: DescribeSubnetGroupsCommandInput,
|
|
259
250
|
options: __HttpHandlerOptions,
|
|
260
|
-
cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void
|
|
251
|
+
cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void,
|
|
261
252
|
): void;
|
|
262
253
|
increaseReplicationFactor(
|
|
263
254
|
args: IncreaseReplicationFactorCommandInput,
|
|
264
|
-
options?: __HttpHandlerOptions
|
|
255
|
+
options?: __HttpHandlerOptions,
|
|
265
256
|
): Promise<IncreaseReplicationFactorCommandOutput>;
|
|
266
257
|
increaseReplicationFactor(
|
|
267
258
|
args: IncreaseReplicationFactorCommandInput,
|
|
268
|
-
cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void
|
|
259
|
+
cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void,
|
|
269
260
|
): void;
|
|
270
261
|
increaseReplicationFactor(
|
|
271
262
|
args: IncreaseReplicationFactorCommandInput,
|
|
272
263
|
options: __HttpHandlerOptions,
|
|
273
|
-
cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void
|
|
264
|
+
cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void,
|
|
274
265
|
): void;
|
|
275
266
|
listTags(
|
|
276
267
|
args: ListTagsCommandInput,
|
|
277
|
-
options?: __HttpHandlerOptions
|
|
268
|
+
options?: __HttpHandlerOptions,
|
|
278
269
|
): Promise<ListTagsCommandOutput>;
|
|
279
|
-
listTags(
|
|
280
|
-
args: ListTagsCommandInput,
|
|
281
|
-
cb: (err: any, data?: ListTagsCommandOutput) => void
|
|
282
|
-
): void;
|
|
270
|
+
listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
|
|
283
271
|
listTags(
|
|
284
272
|
args: ListTagsCommandInput,
|
|
285
273
|
options: __HttpHandlerOptions,
|
|
286
|
-
cb: (err: any, data?: ListTagsCommandOutput) => void
|
|
274
|
+
cb: (err: any, data?: ListTagsCommandOutput) => void,
|
|
287
275
|
): void;
|
|
288
276
|
rebootNode(
|
|
289
277
|
args: RebootNodeCommandInput,
|
|
290
|
-
options?: __HttpHandlerOptions
|
|
278
|
+
options?: __HttpHandlerOptions,
|
|
291
279
|
): Promise<RebootNodeCommandOutput>;
|
|
292
280
|
rebootNode(
|
|
293
281
|
args: RebootNodeCommandInput,
|
|
294
|
-
cb: (err: any, data?: RebootNodeCommandOutput) => void
|
|
282
|
+
cb: (err: any, data?: RebootNodeCommandOutput) => void,
|
|
295
283
|
): void;
|
|
296
284
|
rebootNode(
|
|
297
285
|
args: RebootNodeCommandInput,
|
|
298
286
|
options: __HttpHandlerOptions,
|
|
299
|
-
cb: (err: any, data?: RebootNodeCommandOutput) => void
|
|
287
|
+
cb: (err: any, data?: RebootNodeCommandOutput) => void,
|
|
300
288
|
): void;
|
|
301
289
|
tagResource(
|
|
302
290
|
args: TagResourceCommandInput,
|
|
303
|
-
options?: __HttpHandlerOptions
|
|
291
|
+
options?: __HttpHandlerOptions,
|
|
304
292
|
): Promise<TagResourceCommandOutput>;
|
|
305
293
|
tagResource(
|
|
306
294
|
args: TagResourceCommandInput,
|
|
307
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
295
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
308
296
|
): void;
|
|
309
297
|
tagResource(
|
|
310
298
|
args: TagResourceCommandInput,
|
|
311
299
|
options: __HttpHandlerOptions,
|
|
312
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
300
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
313
301
|
): void;
|
|
314
302
|
untagResource(
|
|
315
303
|
args: UntagResourceCommandInput,
|
|
316
|
-
options?: __HttpHandlerOptions
|
|
304
|
+
options?: __HttpHandlerOptions,
|
|
317
305
|
): Promise<UntagResourceCommandOutput>;
|
|
318
306
|
untagResource(
|
|
319
307
|
args: UntagResourceCommandInput,
|
|
320
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
308
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
321
309
|
): void;
|
|
322
310
|
untagResource(
|
|
323
311
|
args: UntagResourceCommandInput,
|
|
324
312
|
options: __HttpHandlerOptions,
|
|
325
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
313
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
326
314
|
): void;
|
|
327
315
|
updateCluster(
|
|
328
316
|
args: UpdateClusterCommandInput,
|
|
329
|
-
options?: __HttpHandlerOptions
|
|
317
|
+
options?: __HttpHandlerOptions,
|
|
330
318
|
): Promise<UpdateClusterCommandOutput>;
|
|
331
319
|
updateCluster(
|
|
332
320
|
args: UpdateClusterCommandInput,
|
|
333
|
-
cb: (err: any, data?: UpdateClusterCommandOutput) => void
|
|
321
|
+
cb: (err: any, data?: UpdateClusterCommandOutput) => void,
|
|
334
322
|
): void;
|
|
335
323
|
updateCluster(
|
|
336
324
|
args: UpdateClusterCommandInput,
|
|
337
325
|
options: __HttpHandlerOptions,
|
|
338
|
-
cb: (err: any, data?: UpdateClusterCommandOutput) => void
|
|
326
|
+
cb: (err: any, data?: UpdateClusterCommandOutput) => void,
|
|
339
327
|
): void;
|
|
340
328
|
updateParameterGroup(
|
|
341
329
|
args: UpdateParameterGroupCommandInput,
|
|
342
|
-
options?: __HttpHandlerOptions
|
|
330
|
+
options?: __HttpHandlerOptions,
|
|
343
331
|
): Promise<UpdateParameterGroupCommandOutput>;
|
|
344
332
|
updateParameterGroup(
|
|
345
333
|
args: UpdateParameterGroupCommandInput,
|
|
346
|
-
cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void
|
|
334
|
+
cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void,
|
|
347
335
|
): void;
|
|
348
336
|
updateParameterGroup(
|
|
349
337
|
args: UpdateParameterGroupCommandInput,
|
|
350
338
|
options: __HttpHandlerOptions,
|
|
351
|
-
cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void
|
|
339
|
+
cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void,
|
|
352
340
|
): void;
|
|
353
341
|
updateSubnetGroup(
|
|
354
342
|
args: UpdateSubnetGroupCommandInput,
|
|
355
|
-
options?: __HttpHandlerOptions
|
|
343
|
+
options?: __HttpHandlerOptions,
|
|
356
344
|
): Promise<UpdateSubnetGroupCommandOutput>;
|
|
357
345
|
updateSubnetGroup(
|
|
358
346
|
args: UpdateSubnetGroupCommandInput,
|
|
359
|
-
cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void
|
|
347
|
+
cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void,
|
|
360
348
|
): void;
|
|
361
349
|
updateSubnetGroup(
|
|
362
350
|
args: UpdateSubnetGroupCommandInput,
|
|
363
351
|
options: __HttpHandlerOptions,
|
|
364
|
-
cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void
|
|
352
|
+
cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void,
|
|
365
353
|
): void;
|
|
366
354
|
}
|
|
367
355
|
export declare class DAX extends DAXClient implements DAX {}
|
|
@@ -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 {
|
|
@@ -92,18 +89,9 @@ import {
|
|
|
92
89
|
IncreaseReplicationFactorCommandInput,
|
|
93
90
|
IncreaseReplicationFactorCommandOutput,
|
|
94
91
|
} from "./commands/IncreaseReplicationFactorCommand";
|
|
95
|
-
import {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
} from "./commands/ListTagsCommand";
|
|
99
|
-
import {
|
|
100
|
-
RebootNodeCommandInput,
|
|
101
|
-
RebootNodeCommandOutput,
|
|
102
|
-
} from "./commands/RebootNodeCommand";
|
|
103
|
-
import {
|
|
104
|
-
TagResourceCommandInput,
|
|
105
|
-
TagResourceCommandOutput,
|
|
106
|
-
} from "./commands/TagResourceCommand";
|
|
92
|
+
import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
|
|
93
|
+
import { RebootNodeCommandInput, RebootNodeCommandOutput } from "./commands/RebootNodeCommand";
|
|
94
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
107
95
|
import {
|
|
108
96
|
UntagResourceCommandInput,
|
|
109
97
|
UntagResourceCommandOutput,
|
|
@@ -171,8 +159,7 @@ export type ServiceOutputTypes =
|
|
|
171
159
|
| UpdateClusterCommandOutput
|
|
172
160
|
| UpdateParameterGroupCommandOutput
|
|
173
161
|
| UpdateSubnetGroupCommandOutput;
|
|
174
|
-
export interface ClientDefaults
|
|
175
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
162
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
176
163
|
requestHandler?: __HttpHandlerUserInput;
|
|
177
164
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
178
165
|
urlParser?: __UrlParser;
|
|
@@ -197,9 +184,7 @@ export interface ClientDefaults
|
|
|
197
184
|
extensions?: RuntimeExtension[];
|
|
198
185
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
199
186
|
}
|
|
200
|
-
export type DAXClientConfigType = Partial<
|
|
201
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
202
|
-
> &
|
|
187
|
+
export type DAXClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
203
188
|
ClientDefaults &
|
|
204
189
|
UserAgentInputConfig &
|
|
205
190
|
RetryInputConfig &
|
|
@@ -209,17 +194,16 @@ export type DAXClientConfigType = Partial<
|
|
|
209
194
|
HttpAuthSchemeInputConfig &
|
|
210
195
|
ClientInputEndpointParameters;
|
|
211
196
|
export interface DAXClientConfig extends DAXClientConfigType {}
|
|
212
|
-
export type DAXClientResolvedConfigType =
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
ClientResolvedEndpointParameters;
|
|
197
|
+
export type DAXClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
198
|
+
Required<ClientDefaults> &
|
|
199
|
+
RuntimeExtensionsConfig &
|
|
200
|
+
UserAgentResolvedConfig &
|
|
201
|
+
RetryResolvedConfig &
|
|
202
|
+
RegionResolvedConfig &
|
|
203
|
+
HostHeaderResolvedConfig &
|
|
204
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
205
|
+
HttpAuthSchemeResolvedConfig &
|
|
206
|
+
ClientResolvedEndpointParameters;
|
|
223
207
|
export interface DAXClientResolvedConfig extends DAXClientResolvedConfigType {}
|
|
224
208
|
export declare class DAXClient extends __Client<
|
|
225
209
|
__HttpHandlerOptions,
|
|
@@ -7,17 +7,10 @@ import { DAXHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: DAXHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: DAXHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): DAXHttpAuthSchemeProvider;
|
|
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;
|
|
@@ -15,32 +15,29 @@ import { DAXClientResolvedConfig } from "../DAXClient";
|
|
|
15
15
|
export interface DAXHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
16
|
region?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface DAXHttpAuthSchemeParametersProvider
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {}
|
|
18
|
+
export interface DAXHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
DAXClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
DAXHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
25
24
|
export declare const defaultDAXHttpAuthSchemeParametersProvider: (
|
|
26
25
|
config: DAXClientResolvedConfig,
|
|
27
26
|
context: HandlerExecutionContext,
|
|
28
|
-
input: object
|
|
27
|
+
input: object,
|
|
29
28
|
) => Promise<DAXHttpAuthSchemeParameters>;
|
|
30
|
-
export interface DAXHttpAuthSchemeProvider
|
|
31
|
-
extends HttpAuthSchemeProvider<DAXHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface DAXHttpAuthSchemeProvider extends HttpAuthSchemeProvider<DAXHttpAuthSchemeParameters> {}
|
|
32
30
|
export declare const defaultDAXHttpAuthSchemeProvider: DAXHttpAuthSchemeProvider;
|
|
33
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
34
|
httpAuthSchemeProvider?: DAXHttpAuthSchemeProvider;
|
|
37
35
|
}
|
|
38
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
39
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
40
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
41
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
42
39
|
readonly httpAuthSchemeProvider: DAXHttpAuthSchemeProvider;
|
|
43
40
|
}
|
|
44
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
45
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
46
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceInputTypes,
|
|
5
|
-
ServiceOutputTypes,
|
|
6
|
-
} from "./DAXClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./DAXClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
DAXClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
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
|
-
CreateClusterRequest,
|
|
4
|
-
CreateClusterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateClusterCommandInput extends CreateClusterRequest {}
|
|
8
|
-
export interface CreateClusterCommandOutput
|
|
9
|
-
extends CreateClusterResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateClusterCommandOutput extends CreateClusterResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateClusterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateClusterCommandInput
|
|
8
|
+
input: CreateClusterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateClusterCommandInput,
|
|
16
11
|
CreateClusterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateClusterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateClusterCommandInput
|
|
17
|
+
input: CreateClusterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateClusterCommandInput,
|
|
25
20
|
CreateClusterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateParameterGroupRequest,
|
|
4
|
-
CreateParameterGroupResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateParameterGroupRequest, CreateParameterGroupResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateParameterGroupCommandInput
|
|
8
|
-
extends CreateParameterGroupRequest {}
|
|
4
|
+
export interface CreateParameterGroupCommandInput extends CreateParameterGroupRequest {}
|
|
9
5
|
export interface CreateParameterGroupCommandOutput
|
|
10
|
-
extends CreateParameterGroupResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateParameterGroupResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateParameterGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateParameterGroupCommandInput
|
|
9
|
+
input: CreateParameterGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateParameterGroupCommandInput,
|
|
17
12
|
CreateParameterGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateParameterGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateParameterGroupCommandInput
|
|
18
|
+
input: CreateParameterGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateParameterGroupCommandInput,
|
|
26
21
|
CreateParameterGroupCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateSubnetGroupRequest,
|
|
4
|
-
CreateSubnetGroupResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateSubnetGroupRequest, CreateSubnetGroupResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateSubnetGroupCommandInput
|
|
8
|
-
extends CreateSubnetGroupRequest {}
|
|
4
|
+
export interface CreateSubnetGroupCommandInput extends CreateSubnetGroupRequest {}
|
|
9
5
|
export interface CreateSubnetGroupCommandOutput
|
|
10
|
-
extends CreateSubnetGroupResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateSubnetGroupResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateSubnetGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateSubnetGroupCommandInput
|
|
9
|
+
input: CreateSubnetGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateSubnetGroupCommandInput,
|
|
17
12
|
CreateSubnetGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateSubnetGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateSubnetGroupCommandInput
|
|
18
|
+
input: CreateSubnetGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateSubnetGroupCommandInput,
|
|
26
21
|
CreateSubnetGroupCommandOutput,
|