@aws-sdk/client-backup-gateway 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/BackupGateway.d.ts +81 -89
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +8 -24
- 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/AssociateGatewayToServerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetBandwidthRateLimitScheduleCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetHypervisorCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetHypervisorPropertyMappingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetVirtualMachineCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutBandwidthRateLimitScheduleCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutHypervisorPropertyMappingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateGatewaySoftwareNowCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateHypervisorCommand.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 +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- 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
|
@@ -28,10 +28,7 @@ import {
|
|
|
28
28
|
GetBandwidthRateLimitScheduleCommandInput,
|
|
29
29
|
GetBandwidthRateLimitScheduleCommandOutput,
|
|
30
30
|
} from "./commands/GetBandwidthRateLimitScheduleCommand";
|
|
31
|
-
import {
|
|
32
|
-
GetGatewayCommandInput,
|
|
33
|
-
GetGatewayCommandOutput,
|
|
34
|
-
} from "./commands/GetGatewayCommand";
|
|
31
|
+
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
35
32
|
import {
|
|
36
33
|
GetHypervisorCommandInput,
|
|
37
34
|
GetHypervisorCommandOutput,
|
|
@@ -80,10 +77,7 @@ import {
|
|
|
80
77
|
StartVirtualMachinesMetadataSyncCommandInput,
|
|
81
78
|
StartVirtualMachinesMetadataSyncCommandOutput,
|
|
82
79
|
} from "./commands/StartVirtualMachinesMetadataSyncCommand";
|
|
83
|
-
import {
|
|
84
|
-
TagResourceCommandInput,
|
|
85
|
-
TagResourceCommandOutput,
|
|
86
|
-
} from "./commands/TagResourceCommand";
|
|
80
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
87
81
|
import {
|
|
88
82
|
TestHypervisorConfigurationCommandInput,
|
|
89
83
|
TestHypervisorConfigurationCommandOutput,
|
|
@@ -107,354 +101,352 @@ import {
|
|
|
107
101
|
export interface BackupGateway {
|
|
108
102
|
associateGatewayToServer(
|
|
109
103
|
args: AssociateGatewayToServerCommandInput,
|
|
110
|
-
options?: __HttpHandlerOptions
|
|
104
|
+
options?: __HttpHandlerOptions,
|
|
111
105
|
): Promise<AssociateGatewayToServerCommandOutput>;
|
|
112
106
|
associateGatewayToServer(
|
|
113
107
|
args: AssociateGatewayToServerCommandInput,
|
|
114
|
-
cb: (err: any, data?: AssociateGatewayToServerCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: AssociateGatewayToServerCommandOutput) => void,
|
|
115
109
|
): void;
|
|
116
110
|
associateGatewayToServer(
|
|
117
111
|
args: AssociateGatewayToServerCommandInput,
|
|
118
112
|
options: __HttpHandlerOptions,
|
|
119
|
-
cb: (err: any, data?: AssociateGatewayToServerCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: AssociateGatewayToServerCommandOutput) => void,
|
|
120
114
|
): void;
|
|
121
115
|
createGateway(
|
|
122
116
|
args: CreateGatewayCommandInput,
|
|
123
|
-
options?: __HttpHandlerOptions
|
|
117
|
+
options?: __HttpHandlerOptions,
|
|
124
118
|
): Promise<CreateGatewayCommandOutput>;
|
|
125
119
|
createGateway(
|
|
126
120
|
args: CreateGatewayCommandInput,
|
|
127
|
-
cb: (err: any, data?: CreateGatewayCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: CreateGatewayCommandOutput) => void,
|
|
128
122
|
): void;
|
|
129
123
|
createGateway(
|
|
130
124
|
args: CreateGatewayCommandInput,
|
|
131
125
|
options: __HttpHandlerOptions,
|
|
132
|
-
cb: (err: any, data?: CreateGatewayCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: CreateGatewayCommandOutput) => void,
|
|
133
127
|
): void;
|
|
134
128
|
deleteGateway(
|
|
135
129
|
args: DeleteGatewayCommandInput,
|
|
136
|
-
options?: __HttpHandlerOptions
|
|
130
|
+
options?: __HttpHandlerOptions,
|
|
137
131
|
): Promise<DeleteGatewayCommandOutput>;
|
|
138
132
|
deleteGateway(
|
|
139
133
|
args: DeleteGatewayCommandInput,
|
|
140
|
-
cb: (err: any, data?: DeleteGatewayCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: DeleteGatewayCommandOutput) => void,
|
|
141
135
|
): void;
|
|
142
136
|
deleteGateway(
|
|
143
137
|
args: DeleteGatewayCommandInput,
|
|
144
138
|
options: __HttpHandlerOptions,
|
|
145
|
-
cb: (err: any, data?: DeleteGatewayCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: DeleteGatewayCommandOutput) => void,
|
|
146
140
|
): void;
|
|
147
141
|
deleteHypervisor(
|
|
148
142
|
args: DeleteHypervisorCommandInput,
|
|
149
|
-
options?: __HttpHandlerOptions
|
|
143
|
+
options?: __HttpHandlerOptions,
|
|
150
144
|
): Promise<DeleteHypervisorCommandOutput>;
|
|
151
145
|
deleteHypervisor(
|
|
152
146
|
args: DeleteHypervisorCommandInput,
|
|
153
|
-
cb: (err: any, data?: DeleteHypervisorCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: DeleteHypervisorCommandOutput) => void,
|
|
154
148
|
): void;
|
|
155
149
|
deleteHypervisor(
|
|
156
150
|
args: DeleteHypervisorCommandInput,
|
|
157
151
|
options: __HttpHandlerOptions,
|
|
158
|
-
cb: (err: any, data?: DeleteHypervisorCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: DeleteHypervisorCommandOutput) => void,
|
|
159
153
|
): void;
|
|
160
154
|
disassociateGatewayFromServer(
|
|
161
155
|
args: DisassociateGatewayFromServerCommandInput,
|
|
162
|
-
options?: __HttpHandlerOptions
|
|
156
|
+
options?: __HttpHandlerOptions,
|
|
163
157
|
): Promise<DisassociateGatewayFromServerCommandOutput>;
|
|
164
158
|
disassociateGatewayFromServer(
|
|
165
159
|
args: DisassociateGatewayFromServerCommandInput,
|
|
166
|
-
cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void,
|
|
167
161
|
): void;
|
|
168
162
|
disassociateGatewayFromServer(
|
|
169
163
|
args: DisassociateGatewayFromServerCommandInput,
|
|
170
164
|
options: __HttpHandlerOptions,
|
|
171
|
-
cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void
|
|
165
|
+
cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void,
|
|
172
166
|
): void;
|
|
173
167
|
getBandwidthRateLimitSchedule(
|
|
174
168
|
args: GetBandwidthRateLimitScheduleCommandInput,
|
|
175
|
-
options?: __HttpHandlerOptions
|
|
169
|
+
options?: __HttpHandlerOptions,
|
|
176
170
|
): Promise<GetBandwidthRateLimitScheduleCommandOutput>;
|
|
177
171
|
getBandwidthRateLimitSchedule(
|
|
178
172
|
args: GetBandwidthRateLimitScheduleCommandInput,
|
|
179
|
-
cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void,
|
|
180
174
|
): void;
|
|
181
175
|
getBandwidthRateLimitSchedule(
|
|
182
176
|
args: GetBandwidthRateLimitScheduleCommandInput,
|
|
183
177
|
options: __HttpHandlerOptions,
|
|
184
|
-
cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void,
|
|
185
179
|
): void;
|
|
186
180
|
getGateway(
|
|
187
181
|
args: GetGatewayCommandInput,
|
|
188
|
-
options?: __HttpHandlerOptions
|
|
182
|
+
options?: __HttpHandlerOptions,
|
|
189
183
|
): Promise<GetGatewayCommandOutput>;
|
|
190
184
|
getGateway(
|
|
191
185
|
args: GetGatewayCommandInput,
|
|
192
|
-
cb: (err: any, data?: GetGatewayCommandOutput) => void
|
|
186
|
+
cb: (err: any, data?: GetGatewayCommandOutput) => void,
|
|
193
187
|
): void;
|
|
194
188
|
getGateway(
|
|
195
189
|
args: GetGatewayCommandInput,
|
|
196
190
|
options: __HttpHandlerOptions,
|
|
197
|
-
cb: (err: any, data?: GetGatewayCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: GetGatewayCommandOutput) => void,
|
|
198
192
|
): void;
|
|
199
193
|
getHypervisor(
|
|
200
194
|
args: GetHypervisorCommandInput,
|
|
201
|
-
options?: __HttpHandlerOptions
|
|
195
|
+
options?: __HttpHandlerOptions,
|
|
202
196
|
): Promise<GetHypervisorCommandOutput>;
|
|
203
197
|
getHypervisor(
|
|
204
198
|
args: GetHypervisorCommandInput,
|
|
205
|
-
cb: (err: any, data?: GetHypervisorCommandOutput) => void
|
|
199
|
+
cb: (err: any, data?: GetHypervisorCommandOutput) => void,
|
|
206
200
|
): void;
|
|
207
201
|
getHypervisor(
|
|
208
202
|
args: GetHypervisorCommandInput,
|
|
209
203
|
options: __HttpHandlerOptions,
|
|
210
|
-
cb: (err: any, data?: GetHypervisorCommandOutput) => void
|
|
204
|
+
cb: (err: any, data?: GetHypervisorCommandOutput) => void,
|
|
211
205
|
): void;
|
|
212
206
|
getHypervisorPropertyMappings(
|
|
213
207
|
args: GetHypervisorPropertyMappingsCommandInput,
|
|
214
|
-
options?: __HttpHandlerOptions
|
|
208
|
+
options?: __HttpHandlerOptions,
|
|
215
209
|
): Promise<GetHypervisorPropertyMappingsCommandOutput>;
|
|
216
210
|
getHypervisorPropertyMappings(
|
|
217
211
|
args: GetHypervisorPropertyMappingsCommandInput,
|
|
218
|
-
cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void
|
|
212
|
+
cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void,
|
|
219
213
|
): void;
|
|
220
214
|
getHypervisorPropertyMappings(
|
|
221
215
|
args: GetHypervisorPropertyMappingsCommandInput,
|
|
222
216
|
options: __HttpHandlerOptions,
|
|
223
|
-
cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void
|
|
217
|
+
cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void,
|
|
224
218
|
): void;
|
|
225
219
|
getVirtualMachine(
|
|
226
220
|
args: GetVirtualMachineCommandInput,
|
|
227
|
-
options?: __HttpHandlerOptions
|
|
221
|
+
options?: __HttpHandlerOptions,
|
|
228
222
|
): Promise<GetVirtualMachineCommandOutput>;
|
|
229
223
|
getVirtualMachine(
|
|
230
224
|
args: GetVirtualMachineCommandInput,
|
|
231
|
-
cb: (err: any, data?: GetVirtualMachineCommandOutput) => void
|
|
225
|
+
cb: (err: any, data?: GetVirtualMachineCommandOutput) => void,
|
|
232
226
|
): void;
|
|
233
227
|
getVirtualMachine(
|
|
234
228
|
args: GetVirtualMachineCommandInput,
|
|
235
229
|
options: __HttpHandlerOptions,
|
|
236
|
-
cb: (err: any, data?: GetVirtualMachineCommandOutput) => void
|
|
230
|
+
cb: (err: any, data?: GetVirtualMachineCommandOutput) => void,
|
|
237
231
|
): void;
|
|
238
232
|
importHypervisorConfiguration(
|
|
239
233
|
args: ImportHypervisorConfigurationCommandInput,
|
|
240
|
-
options?: __HttpHandlerOptions
|
|
234
|
+
options?: __HttpHandlerOptions,
|
|
241
235
|
): Promise<ImportHypervisorConfigurationCommandOutput>;
|
|
242
236
|
importHypervisorConfiguration(
|
|
243
237
|
args: ImportHypervisorConfigurationCommandInput,
|
|
244
|
-
cb: (err: any, data?: ImportHypervisorConfigurationCommandOutput) => void
|
|
238
|
+
cb: (err: any, data?: ImportHypervisorConfigurationCommandOutput) => void,
|
|
245
239
|
): void;
|
|
246
240
|
importHypervisorConfiguration(
|
|
247
241
|
args: ImportHypervisorConfigurationCommandInput,
|
|
248
242
|
options: __HttpHandlerOptions,
|
|
249
|
-
cb: (err: any, data?: ImportHypervisorConfigurationCommandOutput) => void
|
|
243
|
+
cb: (err: any, data?: ImportHypervisorConfigurationCommandOutput) => void,
|
|
250
244
|
): void;
|
|
251
245
|
listGateways(): Promise<ListGatewaysCommandOutput>;
|
|
252
246
|
listGateways(
|
|
253
247
|
args: ListGatewaysCommandInput,
|
|
254
|
-
options?: __HttpHandlerOptions
|
|
248
|
+
options?: __HttpHandlerOptions,
|
|
255
249
|
): Promise<ListGatewaysCommandOutput>;
|
|
256
250
|
listGateways(
|
|
257
251
|
args: ListGatewaysCommandInput,
|
|
258
|
-
cb: (err: any, data?: ListGatewaysCommandOutput) => void
|
|
252
|
+
cb: (err: any, data?: ListGatewaysCommandOutput) => void,
|
|
259
253
|
): void;
|
|
260
254
|
listGateways(
|
|
261
255
|
args: ListGatewaysCommandInput,
|
|
262
256
|
options: __HttpHandlerOptions,
|
|
263
|
-
cb: (err: any, data?: ListGatewaysCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: ListGatewaysCommandOutput) => void,
|
|
264
258
|
): void;
|
|
265
259
|
listHypervisors(): Promise<ListHypervisorsCommandOutput>;
|
|
266
260
|
listHypervisors(
|
|
267
261
|
args: ListHypervisorsCommandInput,
|
|
268
|
-
options?: __HttpHandlerOptions
|
|
262
|
+
options?: __HttpHandlerOptions,
|
|
269
263
|
): Promise<ListHypervisorsCommandOutput>;
|
|
270
264
|
listHypervisors(
|
|
271
265
|
args: ListHypervisorsCommandInput,
|
|
272
|
-
cb: (err: any, data?: ListHypervisorsCommandOutput) => void
|
|
266
|
+
cb: (err: any, data?: ListHypervisorsCommandOutput) => void,
|
|
273
267
|
): void;
|
|
274
268
|
listHypervisors(
|
|
275
269
|
args: ListHypervisorsCommandInput,
|
|
276
270
|
options: __HttpHandlerOptions,
|
|
277
|
-
cb: (err: any, data?: ListHypervisorsCommandOutput) => void
|
|
271
|
+
cb: (err: any, data?: ListHypervisorsCommandOutput) => void,
|
|
278
272
|
): void;
|
|
279
273
|
listTagsForResource(
|
|
280
274
|
args: ListTagsForResourceCommandInput,
|
|
281
|
-
options?: __HttpHandlerOptions
|
|
275
|
+
options?: __HttpHandlerOptions,
|
|
282
276
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
283
277
|
listTagsForResource(
|
|
284
278
|
args: ListTagsForResourceCommandInput,
|
|
285
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
279
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
286
280
|
): void;
|
|
287
281
|
listTagsForResource(
|
|
288
282
|
args: ListTagsForResourceCommandInput,
|
|
289
283
|
options: __HttpHandlerOptions,
|
|
290
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
284
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
291
285
|
): void;
|
|
292
286
|
listVirtualMachines(): Promise<ListVirtualMachinesCommandOutput>;
|
|
293
287
|
listVirtualMachines(
|
|
294
288
|
args: ListVirtualMachinesCommandInput,
|
|
295
|
-
options?: __HttpHandlerOptions
|
|
289
|
+
options?: __HttpHandlerOptions,
|
|
296
290
|
): Promise<ListVirtualMachinesCommandOutput>;
|
|
297
291
|
listVirtualMachines(
|
|
298
292
|
args: ListVirtualMachinesCommandInput,
|
|
299
|
-
cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void
|
|
293
|
+
cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void,
|
|
300
294
|
): void;
|
|
301
295
|
listVirtualMachines(
|
|
302
296
|
args: ListVirtualMachinesCommandInput,
|
|
303
297
|
options: __HttpHandlerOptions,
|
|
304
|
-
cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void
|
|
298
|
+
cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void,
|
|
305
299
|
): void;
|
|
306
300
|
putBandwidthRateLimitSchedule(
|
|
307
301
|
args: PutBandwidthRateLimitScheduleCommandInput,
|
|
308
|
-
options?: __HttpHandlerOptions
|
|
302
|
+
options?: __HttpHandlerOptions,
|
|
309
303
|
): Promise<PutBandwidthRateLimitScheduleCommandOutput>;
|
|
310
304
|
putBandwidthRateLimitSchedule(
|
|
311
305
|
args: PutBandwidthRateLimitScheduleCommandInput,
|
|
312
|
-
cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void
|
|
306
|
+
cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void,
|
|
313
307
|
): void;
|
|
314
308
|
putBandwidthRateLimitSchedule(
|
|
315
309
|
args: PutBandwidthRateLimitScheduleCommandInput,
|
|
316
310
|
options: __HttpHandlerOptions,
|
|
317
|
-
cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void
|
|
311
|
+
cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void,
|
|
318
312
|
): void;
|
|
319
313
|
putHypervisorPropertyMappings(
|
|
320
314
|
args: PutHypervisorPropertyMappingsCommandInput,
|
|
321
|
-
options?: __HttpHandlerOptions
|
|
315
|
+
options?: __HttpHandlerOptions,
|
|
322
316
|
): Promise<PutHypervisorPropertyMappingsCommandOutput>;
|
|
323
317
|
putHypervisorPropertyMappings(
|
|
324
318
|
args: PutHypervisorPropertyMappingsCommandInput,
|
|
325
|
-
cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void
|
|
319
|
+
cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void,
|
|
326
320
|
): void;
|
|
327
321
|
putHypervisorPropertyMappings(
|
|
328
322
|
args: PutHypervisorPropertyMappingsCommandInput,
|
|
329
323
|
options: __HttpHandlerOptions,
|
|
330
|
-
cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void
|
|
324
|
+
cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void,
|
|
331
325
|
): void;
|
|
332
326
|
putMaintenanceStartTime(
|
|
333
327
|
args: PutMaintenanceStartTimeCommandInput,
|
|
334
|
-
options?: __HttpHandlerOptions
|
|
328
|
+
options?: __HttpHandlerOptions,
|
|
335
329
|
): Promise<PutMaintenanceStartTimeCommandOutput>;
|
|
336
330
|
putMaintenanceStartTime(
|
|
337
331
|
args: PutMaintenanceStartTimeCommandInput,
|
|
338
|
-
cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void
|
|
332
|
+
cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void,
|
|
339
333
|
): void;
|
|
340
334
|
putMaintenanceStartTime(
|
|
341
335
|
args: PutMaintenanceStartTimeCommandInput,
|
|
342
336
|
options: __HttpHandlerOptions,
|
|
343
|
-
cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void
|
|
337
|
+
cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void,
|
|
344
338
|
): void;
|
|
345
339
|
startVirtualMachinesMetadataSync(
|
|
346
340
|
args: StartVirtualMachinesMetadataSyncCommandInput,
|
|
347
|
-
options?: __HttpHandlerOptions
|
|
341
|
+
options?: __HttpHandlerOptions,
|
|
348
342
|
): Promise<StartVirtualMachinesMetadataSyncCommandOutput>;
|
|
349
343
|
startVirtualMachinesMetadataSync(
|
|
350
344
|
args: StartVirtualMachinesMetadataSyncCommandInput,
|
|
351
|
-
cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void
|
|
345
|
+
cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void,
|
|
352
346
|
): void;
|
|
353
347
|
startVirtualMachinesMetadataSync(
|
|
354
348
|
args: StartVirtualMachinesMetadataSyncCommandInput,
|
|
355
349
|
options: __HttpHandlerOptions,
|
|
356
|
-
cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void
|
|
350
|
+
cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void,
|
|
357
351
|
): void;
|
|
358
352
|
tagResource(
|
|
359
353
|
args: TagResourceCommandInput,
|
|
360
|
-
options?: __HttpHandlerOptions
|
|
354
|
+
options?: __HttpHandlerOptions,
|
|
361
355
|
): Promise<TagResourceCommandOutput>;
|
|
362
356
|
tagResource(
|
|
363
357
|
args: TagResourceCommandInput,
|
|
364
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
358
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
365
359
|
): void;
|
|
366
360
|
tagResource(
|
|
367
361
|
args: TagResourceCommandInput,
|
|
368
362
|
options: __HttpHandlerOptions,
|
|
369
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
363
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
370
364
|
): void;
|
|
371
365
|
testHypervisorConfiguration(
|
|
372
366
|
args: TestHypervisorConfigurationCommandInput,
|
|
373
|
-
options?: __HttpHandlerOptions
|
|
367
|
+
options?: __HttpHandlerOptions,
|
|
374
368
|
): Promise<TestHypervisorConfigurationCommandOutput>;
|
|
375
369
|
testHypervisorConfiguration(
|
|
376
370
|
args: TestHypervisorConfigurationCommandInput,
|
|
377
|
-
cb: (err: any, data?: TestHypervisorConfigurationCommandOutput) => void
|
|
371
|
+
cb: (err: any, data?: TestHypervisorConfigurationCommandOutput) => void,
|
|
378
372
|
): void;
|
|
379
373
|
testHypervisorConfiguration(
|
|
380
374
|
args: TestHypervisorConfigurationCommandInput,
|
|
381
375
|
options: __HttpHandlerOptions,
|
|
382
|
-
cb: (err: any, data?: TestHypervisorConfigurationCommandOutput) => void
|
|
376
|
+
cb: (err: any, data?: TestHypervisorConfigurationCommandOutput) => void,
|
|
383
377
|
): void;
|
|
384
378
|
untagResource(
|
|
385
379
|
args: UntagResourceCommandInput,
|
|
386
|
-
options?: __HttpHandlerOptions
|
|
380
|
+
options?: __HttpHandlerOptions,
|
|
387
381
|
): Promise<UntagResourceCommandOutput>;
|
|
388
382
|
untagResource(
|
|
389
383
|
args: UntagResourceCommandInput,
|
|
390
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
384
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
391
385
|
): void;
|
|
392
386
|
untagResource(
|
|
393
387
|
args: UntagResourceCommandInput,
|
|
394
388
|
options: __HttpHandlerOptions,
|
|
395
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
389
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
396
390
|
): void;
|
|
397
391
|
updateGatewayInformation(
|
|
398
392
|
args: UpdateGatewayInformationCommandInput,
|
|
399
|
-
options?: __HttpHandlerOptions
|
|
393
|
+
options?: __HttpHandlerOptions,
|
|
400
394
|
): Promise<UpdateGatewayInformationCommandOutput>;
|
|
401
395
|
updateGatewayInformation(
|
|
402
396
|
args: UpdateGatewayInformationCommandInput,
|
|
403
|
-
cb: (err: any, data?: UpdateGatewayInformationCommandOutput) => void
|
|
397
|
+
cb: (err: any, data?: UpdateGatewayInformationCommandOutput) => void,
|
|
404
398
|
): void;
|
|
405
399
|
updateGatewayInformation(
|
|
406
400
|
args: UpdateGatewayInformationCommandInput,
|
|
407
401
|
options: __HttpHandlerOptions,
|
|
408
|
-
cb: (err: any, data?: UpdateGatewayInformationCommandOutput) => void
|
|
402
|
+
cb: (err: any, data?: UpdateGatewayInformationCommandOutput) => void,
|
|
409
403
|
): void;
|
|
410
404
|
updateGatewaySoftwareNow(
|
|
411
405
|
args: UpdateGatewaySoftwareNowCommandInput,
|
|
412
|
-
options?: __HttpHandlerOptions
|
|
406
|
+
options?: __HttpHandlerOptions,
|
|
413
407
|
): Promise<UpdateGatewaySoftwareNowCommandOutput>;
|
|
414
408
|
updateGatewaySoftwareNow(
|
|
415
409
|
args: UpdateGatewaySoftwareNowCommandInput,
|
|
416
|
-
cb: (err: any, data?: UpdateGatewaySoftwareNowCommandOutput) => void
|
|
410
|
+
cb: (err: any, data?: UpdateGatewaySoftwareNowCommandOutput) => void,
|
|
417
411
|
): void;
|
|
418
412
|
updateGatewaySoftwareNow(
|
|
419
413
|
args: UpdateGatewaySoftwareNowCommandInput,
|
|
420
414
|
options: __HttpHandlerOptions,
|
|
421
|
-
cb: (err: any, data?: UpdateGatewaySoftwareNowCommandOutput) => void
|
|
415
|
+
cb: (err: any, data?: UpdateGatewaySoftwareNowCommandOutput) => void,
|
|
422
416
|
): void;
|
|
423
417
|
updateHypervisor(
|
|
424
418
|
args: UpdateHypervisorCommandInput,
|
|
425
|
-
options?: __HttpHandlerOptions
|
|
419
|
+
options?: __HttpHandlerOptions,
|
|
426
420
|
): Promise<UpdateHypervisorCommandOutput>;
|
|
427
421
|
updateHypervisor(
|
|
428
422
|
args: UpdateHypervisorCommandInput,
|
|
429
|
-
cb: (err: any, data?: UpdateHypervisorCommandOutput) => void
|
|
423
|
+
cb: (err: any, data?: UpdateHypervisorCommandOutput) => void,
|
|
430
424
|
): void;
|
|
431
425
|
updateHypervisor(
|
|
432
426
|
args: UpdateHypervisorCommandInput,
|
|
433
427
|
options: __HttpHandlerOptions,
|
|
434
|
-
cb: (err: any, data?: UpdateHypervisorCommandOutput) => void
|
|
428
|
+
cb: (err: any, data?: UpdateHypervisorCommandOutput) => void,
|
|
435
429
|
): void;
|
|
436
430
|
paginateListGateways(
|
|
437
431
|
args?: ListGatewaysCommandInput,
|
|
438
432
|
paginationConfig?: Pick<
|
|
439
433
|
PaginationConfiguration,
|
|
440
434
|
Exclude<keyof PaginationConfiguration, "client">
|
|
441
|
-
|
|
435
|
+
>,
|
|
442
436
|
): Paginator<ListGatewaysCommandOutput>;
|
|
443
437
|
paginateListHypervisors(
|
|
444
438
|
args?: ListHypervisorsCommandInput,
|
|
445
439
|
paginationConfig?: Pick<
|
|
446
440
|
PaginationConfiguration,
|
|
447
441
|
Exclude<keyof PaginationConfiguration, "client">
|
|
448
|
-
|
|
442
|
+
>,
|
|
449
443
|
): Paginator<ListHypervisorsCommandOutput>;
|
|
450
444
|
paginateListVirtualMachines(
|
|
451
445
|
args?: ListVirtualMachinesCommandInput,
|
|
452
446
|
paginationConfig?: Pick<
|
|
453
447
|
PaginationConfiguration,
|
|
454
448
|
Exclude<keyof PaginationConfiguration, "client">
|
|
455
|
-
|
|
449
|
+
>,
|
|
456
450
|
): Paginator<ListVirtualMachinesCommandOutput>;
|
|
457
451
|
}
|
|
458
|
-
export declare class BackupGateway
|
|
459
|
-
extends BackupGatewayClient
|
|
460
|
-
implements BackupGateway {}
|
|
452
|
+
export declare class BackupGateway extends BackupGatewayClient implements BackupGateway {}
|
|
@@ -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 {
|
|
@@ -60,10 +57,7 @@ import {
|
|
|
60
57
|
GetBandwidthRateLimitScheduleCommandInput,
|
|
61
58
|
GetBandwidthRateLimitScheduleCommandOutput,
|
|
62
59
|
} from "./commands/GetBandwidthRateLimitScheduleCommand";
|
|
63
|
-
import {
|
|
64
|
-
GetGatewayCommandInput,
|
|
65
|
-
GetGatewayCommandOutput,
|
|
66
|
-
} from "./commands/GetGatewayCommand";
|
|
60
|
+
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
67
61
|
import {
|
|
68
62
|
GetHypervisorCommandInput,
|
|
69
63
|
GetHypervisorCommandOutput,
|
|
@@ -112,10 +106,7 @@ import {
|
|
|
112
106
|
StartVirtualMachinesMetadataSyncCommandInput,
|
|
113
107
|
StartVirtualMachinesMetadataSyncCommandOutput,
|
|
114
108
|
} from "./commands/StartVirtualMachinesMetadataSyncCommand";
|
|
115
|
-
import {
|
|
116
|
-
TagResourceCommandInput,
|
|
117
|
-
TagResourceCommandOutput,
|
|
118
|
-
} from "./commands/TagResourceCommand";
|
|
109
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
119
110
|
import {
|
|
120
111
|
TestHypervisorConfigurationCommandInput,
|
|
121
112
|
TestHypervisorConfigurationCommandOutput,
|
|
@@ -195,8 +186,7 @@ export type ServiceOutputTypes =
|
|
|
195
186
|
| UpdateGatewayInformationCommandOutput
|
|
196
187
|
| UpdateGatewaySoftwareNowCommandOutput
|
|
197
188
|
| UpdateHypervisorCommandOutput;
|
|
198
|
-
export interface ClientDefaults
|
|
199
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
189
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
200
190
|
requestHandler?: __HttpHandlerUserInput;
|
|
201
191
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
202
192
|
urlParser?: __UrlParser;
|
|
@@ -221,9 +211,7 @@ export interface ClientDefaults
|
|
|
221
211
|
extensions?: RuntimeExtension[];
|
|
222
212
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
223
213
|
}
|
|
224
|
-
export type BackupGatewayClientConfigType = Partial<
|
|
225
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
226
|
-
> &
|
|
214
|
+
export type BackupGatewayClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
227
215
|
ClientDefaults &
|
|
228
216
|
UserAgentInputConfig &
|
|
229
217
|
RetryInputConfig &
|
|
@@ -232,8 +220,7 @@ export type BackupGatewayClientConfigType = Partial<
|
|
|
232
220
|
EndpointInputConfig<EndpointParameters> &
|
|
233
221
|
HttpAuthSchemeInputConfig &
|
|
234
222
|
ClientInputEndpointParameters;
|
|
235
|
-
export interface BackupGatewayClientConfig
|
|
236
|
-
extends BackupGatewayClientConfigType {}
|
|
223
|
+
export interface BackupGatewayClientConfig extends BackupGatewayClientConfigType {}
|
|
237
224
|
export type BackupGatewayClientResolvedConfigType =
|
|
238
225
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
239
226
|
Required<ClientDefaults> &
|
|
@@ -245,8 +232,7 @@ export type BackupGatewayClientResolvedConfigType =
|
|
|
245
232
|
EndpointResolvedConfig<EndpointParameters> &
|
|
246
233
|
HttpAuthSchemeResolvedConfig &
|
|
247
234
|
ClientResolvedEndpointParameters;
|
|
248
|
-
export interface BackupGatewayClientResolvedConfig
|
|
249
|
-
extends BackupGatewayClientResolvedConfigType {}
|
|
235
|
+
export interface BackupGatewayClientResolvedConfig extends BackupGatewayClientResolvedConfigType {}
|
|
250
236
|
export declare class BackupGatewayClient extends __Client<
|
|
251
237
|
__HttpHandlerOptions,
|
|
252
238
|
ServiceInputTypes,
|
|
@@ -254,8 +240,6 @@ export declare class BackupGatewayClient extends __Client<
|
|
|
254
240
|
BackupGatewayClientResolvedConfig
|
|
255
241
|
> {
|
|
256
242
|
readonly config: BackupGatewayClientResolvedConfig;
|
|
257
|
-
constructor(
|
|
258
|
-
...[configuration]: __CheckOptionalClientConfig<BackupGatewayClientConfig>
|
|
259
|
-
);
|
|
243
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<BackupGatewayClientConfig>);
|
|
260
244
|
destroy(): void;
|
|
261
245
|
}
|
|
@@ -7,17 +7,10 @@ import { BackupGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: BackupGatewayHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: BackupGatewayHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): BackupGatewayHttpAuthSchemeProvider;
|
|
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 { BackupGatewayClientResolvedConfig } from "../BackupGatewayClient";
|
|
15
|
-
export interface BackupGatewayHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface BackupGatewayHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface BackupGatewayHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface BackupGatewayHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
BackupGatewayClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
BackupGatewayHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultBackupGatewayHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: BackupGatewayClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<BackupGatewayHttpAuthSchemeParameters>;
|
|
31
|
-
export interface BackupGatewayHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<BackupGatewayHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface BackupGatewayHttpAuthSchemeProvider extends HttpAuthSchemeProvider<BackupGatewayHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultBackupGatewayHttpAuthSchemeProvider: BackupGatewayHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: BackupGatewayHttpAuthSchemeProvider;
|
|
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: BackupGatewayHttpAuthSchemeProvider;
|
|
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
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./BackupGatewayClient";
|
|
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
|
BackupGatewayClientResolvedConfig,
|
|
@@ -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[];
|