@aws-sdk/client-backup-gateway 3.170.0 → 3.177.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/BackupGateway.js +15 -0
  3. package/dist-cjs/commands/GetVirtualMachineCommand.js +36 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +45 -13
  6. package/dist-cjs/protocols/Aws_json1_0.js +159 -1
  7. package/dist-es/BackupGateway.js +15 -0
  8. package/dist-es/commands/GetVirtualMachineCommand.js +39 -0
  9. package/dist-es/commands/index.js +1 -0
  10. package/dist-es/models/models_0.js +21 -3
  11. package/dist-es/protocols/Aws_json1_0.js +323 -129
  12. package/dist-types/BackupGateway.d.ts +7 -0
  13. package/dist-types/BackupGatewayClient.d.ts +3 -2
  14. package/dist-types/commands/GetVirtualMachineCommand.d.ts +35 -0
  15. package/dist-types/commands/index.d.ts +1 -0
  16. package/dist-types/models/models_0.d.ts +152 -39
  17. package/dist-types/protocols/Aws_json1_0.d.ts +3 -0
  18. package/dist-types/ts3.4/BackupGateway.d.ts +17 -18
  19. package/dist-types/ts3.4/BackupGatewayClient.d.ts +6 -25
  20. package/dist-types/ts3.4/commands/AssociateGatewayToServerCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/GetVirtualMachineCommand.d.ts +35 -0
  27. package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  36. package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +0 -2
  37. package/dist-types/ts3.4/commands/UpdateGatewaySoftwareNowCommand.d.ts +0 -2
  38. package/dist-types/ts3.4/commands/UpdateHypervisorCommand.d.ts +0 -2
  39. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  40. package/dist-types/ts3.4/models/BackupGatewayServiceException.d.ts +0 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +66 -134
  42. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  47. package/package.json +26 -26
@@ -1,55 +1,51 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { BackupGatewayServiceException as __BaseException } from "./BackupGatewayServiceException";
3
-
4
3
  export declare class AccessDeniedException extends __BaseException {
5
4
  readonly name: "AccessDeniedException";
6
5
  readonly $fault: "client";
7
-
8
6
  ErrorCode: string | undefined;
9
7
  Message?: string;
10
-
11
8
  constructor(
12
9
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
13
10
  );
14
11
  }
15
12
  export interface AssociateGatewayToServerInput {
16
13
  GatewayArn: string | undefined;
17
-
18
14
  ServerArn: string | undefined;
19
15
  }
20
16
  export interface AssociateGatewayToServerOutput {
21
17
  GatewayArn?: string;
22
18
  }
23
-
24
19
  export declare class ConflictException extends __BaseException {
25
20
  readonly name: "ConflictException";
26
21
  readonly $fault: "client";
27
-
28
22
  ErrorCode: string | undefined;
29
23
  Message?: string;
30
-
31
24
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
32
25
  }
33
-
34
26
  export declare class InternalServerException extends __BaseException {
35
27
  readonly name: "InternalServerException";
36
28
  readonly $fault: "server";
37
-
38
29
  ErrorCode?: string;
39
30
  Message?: string;
40
-
41
31
  constructor(
42
32
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
43
33
  );
44
34
  }
45
-
35
+ export declare class ThrottlingException extends __BaseException {
36
+ readonly name: "ThrottlingException";
37
+ readonly $fault: "client";
38
+ ErrorCode: string | undefined;
39
+ Message?: string;
40
+ constructor(
41
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
42
+ );
43
+ }
46
44
  export declare class ValidationException extends __BaseException {
47
45
  readonly name: "ValidationException";
48
46
  readonly $fault: "client";
49
-
50
47
  ErrorCode?: string;
51
48
  Message?: string;
52
-
53
49
  constructor(
54
50
  opts: __ExceptionOptionType<ValidationException, __BaseException>
55
51
  );
@@ -57,19 +53,14 @@ export declare class ValidationException extends __BaseException {
57
53
  export declare enum GatewayType {
58
54
  BACKUP_VM = "BACKUP_VM",
59
55
  }
60
-
61
56
  export interface Tag {
62
57
  Key: string | undefined;
63
-
64
58
  Value: string | undefined;
65
59
  }
66
60
  export interface CreateGatewayInput {
67
61
  ActivationKey: string | undefined;
68
-
69
62
  GatewayDisplayName: string | undefined;
70
-
71
63
  GatewayType: GatewayType | string | undefined;
72
-
73
64
  Tags?: Tag[];
74
65
  }
75
66
  export interface CreateGatewayOutput {
@@ -81,14 +72,11 @@ export interface DeleteGatewayInput {
81
72
  export interface DeleteGatewayOutput {
82
73
  GatewayArn?: string;
83
74
  }
84
-
85
75
  export declare class ResourceNotFoundException extends __BaseException {
86
76
  readonly name: "ResourceNotFoundException";
87
77
  readonly $fault: "client";
88
-
89
78
  ErrorCode?: string;
90
79
  Message?: string;
91
-
92
80
  constructor(
93
81
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
94
82
  );
@@ -102,20 +90,20 @@ export interface DisassociateGatewayFromServerOutput {
102
90
  export interface GetGatewayInput {
103
91
  GatewayArn: string | undefined;
104
92
  }
105
-
93
+ export interface MaintenanceStartTime {
94
+ DayOfMonth?: number;
95
+ DayOfWeek?: number;
96
+ HourOfDay: number | undefined;
97
+ MinuteOfHour: number | undefined;
98
+ }
106
99
  export interface GatewayDetails {
107
100
  GatewayArn?: string;
108
-
109
101
  GatewayDisplayName?: string;
110
-
111
102
  GatewayType?: GatewayType | string;
112
-
113
103
  HypervisorId?: string;
114
-
115
104
  LastSeenTime?: Date;
116
-
105
+ MaintenanceStartTime?: MaintenanceStartTime;
117
106
  NextUpdateAvailabilityTime?: Date;
118
-
119
107
  VpcEndpoint?: string;
120
108
  }
121
109
  export interface GetGatewayOutput {
@@ -123,35 +111,24 @@ export interface GetGatewayOutput {
123
111
  }
124
112
  export interface ListGatewaysInput {
125
113
  MaxResults?: number;
126
-
127
114
  NextToken?: string;
128
115
  }
129
-
130
116
  export interface Gateway {
131
117
  GatewayArn?: string;
132
-
133
118
  GatewayDisplayName?: string;
134
-
135
119
  GatewayType?: GatewayType | string;
136
-
137
120
  HypervisorId?: string;
138
-
139
121
  LastSeenTime?: Date;
140
122
  }
141
123
  export interface ListGatewaysOutput {
142
124
  Gateways?: Gateway[];
143
-
144
125
  NextToken?: string;
145
126
  }
146
127
  export interface PutMaintenanceStartTimeInput {
147
128
  GatewayArn: string | undefined;
148
-
149
129
  HourOfDay: number | undefined;
150
-
151
130
  MinuteOfHour: number | undefined;
152
-
153
131
  DayOfWeek?: number;
154
-
155
132
  DayOfMonth?: number;
156
133
  }
157
134
  export interface PutMaintenanceStartTimeOutput {
@@ -159,17 +136,13 @@ export interface PutMaintenanceStartTimeOutput {
159
136
  }
160
137
  export interface TestHypervisorConfigurationInput {
161
138
  GatewayArn: string | undefined;
162
-
163
139
  Host: string | undefined;
164
-
165
140
  Username?: string;
166
-
167
141
  Password?: string;
168
142
  }
169
143
  export interface TestHypervisorConfigurationOutput {}
170
144
  export interface UpdateGatewayInformationInput {
171
145
  GatewayArn: string | undefined;
172
-
173
146
  GatewayDisplayName?: string;
174
147
  }
175
148
  export interface UpdateGatewayInformationOutput {
@@ -189,15 +162,10 @@ export interface DeleteHypervisorOutput {
189
162
  }
190
163
  export interface ImportHypervisorConfigurationInput {
191
164
  Name: string | undefined;
192
-
193
165
  Host: string | undefined;
194
-
195
166
  Username?: string;
196
-
197
167
  Password?: string;
198
-
199
168
  KmsKeyArn?: string;
200
-
201
169
  Tags?: Tag[];
202
170
  }
203
171
  export interface ImportHypervisorConfigurationOutput {
@@ -205,7 +173,6 @@ export interface ImportHypervisorConfigurationOutput {
205
173
  }
206
174
  export interface ListHypervisorsInput {
207
175
  MaxResults?: number;
208
-
209
176
  NextToken?: string;
210
177
  }
211
178
  export declare enum HypervisorState {
@@ -214,32 +181,22 @@ export declare enum HypervisorState {
214
181
  ONLINE = "ONLINE",
215
182
  PENDING = "PENDING",
216
183
  }
217
-
218
184
  export interface Hypervisor {
219
185
  Host?: string;
220
-
221
186
  HypervisorArn?: string;
222
-
223
187
  KmsKeyArn?: string;
224
-
225
188
  Name?: string;
226
-
227
189
  State?: HypervisorState | string;
228
190
  }
229
191
  export interface ListHypervisorsOutput {
230
192
  Hypervisors?: Hypervisor[];
231
-
232
193
  NextToken?: string;
233
194
  }
234
195
  export interface UpdateHypervisorInput {
235
196
  HypervisorArn: string | undefined;
236
-
237
197
  Host?: string;
238
-
239
198
  Username?: string;
240
-
241
199
  Password?: string;
242
-
243
200
  Name?: string;
244
201
  }
245
202
  export interface UpdateHypervisorOutput {
@@ -250,204 +207,179 @@ export interface ListTagsForResourceInput {
250
207
  }
251
208
  export interface ListTagsForResourceOutput {
252
209
  ResourceArn?: string;
253
-
254
210
  Tags?: Tag[];
255
211
  }
212
+ export interface TagResourceInput {
213
+ ResourceARN: string | undefined;
214
+ Tags: Tag[] | undefined;
215
+ }
216
+ export interface TagResourceOutput {
217
+ ResourceARN?: string;
218
+ }
219
+ export interface UntagResourceInput {
220
+ ResourceARN: string | undefined;
221
+ TagKeys: string[] | undefined;
222
+ }
223
+ export interface UntagResourceOutput {
224
+ ResourceARN?: string;
225
+ }
226
+ export interface GetVirtualMachineInput {
227
+ ResourceArn: string | undefined;
228
+ }
229
+ export interface VirtualMachineDetails {
230
+ HostName?: string;
231
+ HypervisorId?: string;
232
+ Name?: string;
233
+ Path?: string;
234
+ ResourceArn?: string;
235
+ LastBackupDate?: Date;
236
+ }
237
+ export interface GetVirtualMachineOutput {
238
+ VirtualMachine?: VirtualMachineDetails;
239
+ }
256
240
  export interface ListVirtualMachinesInput {
241
+ HypervisorArn?: string;
257
242
  MaxResults?: number;
258
-
259
243
  NextToken?: string;
260
244
  }
261
-
262
245
  export interface VirtualMachine {
263
246
  HostName?: string;
264
-
265
247
  HypervisorId?: string;
266
-
267
248
  Name?: string;
268
-
269
249
  Path?: string;
270
-
271
250
  ResourceArn?: string;
272
-
273
251
  LastBackupDate?: Date;
274
252
  }
275
253
  export interface ListVirtualMachinesOutput {
276
254
  VirtualMachines?: VirtualMachine[];
277
-
278
255
  NextToken?: string;
279
256
  }
280
- export interface TagResourceInput {
281
- ResourceARN: string | undefined;
282
-
283
- Tags: Tag[] | undefined;
284
- }
285
- export interface TagResourceOutput {
286
- ResourceARN?: string;
287
- }
288
- export interface UntagResourceInput {
289
- ResourceARN: string | undefined;
290
-
291
- TagKeys: string[] | undefined;
292
- }
293
- export interface UntagResourceOutput {
294
- ResourceARN?: string;
295
- }
296
-
297
257
  export declare const AssociateGatewayToServerInputFilterSensitiveLog: (
298
258
  obj: AssociateGatewayToServerInput
299
259
  ) => any;
300
-
301
260
  export declare const AssociateGatewayToServerOutputFilterSensitiveLog: (
302
261
  obj: AssociateGatewayToServerOutput
303
262
  ) => any;
304
-
305
263
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
306
-
307
264
  export declare const CreateGatewayInputFilterSensitiveLog: (
308
265
  obj: CreateGatewayInput
309
266
  ) => any;
310
-
311
267
  export declare const CreateGatewayOutputFilterSensitiveLog: (
312
268
  obj: CreateGatewayOutput
313
269
  ) => any;
314
-
315
270
  export declare const DeleteGatewayInputFilterSensitiveLog: (
316
271
  obj: DeleteGatewayInput
317
272
  ) => any;
318
-
319
273
  export declare const DeleteGatewayOutputFilterSensitiveLog: (
320
274
  obj: DeleteGatewayOutput
321
275
  ) => any;
322
-
323
276
  export declare const DisassociateGatewayFromServerInputFilterSensitiveLog: (
324
277
  obj: DisassociateGatewayFromServerInput
325
278
  ) => any;
326
-
327
279
  export declare const DisassociateGatewayFromServerOutputFilterSensitiveLog: (
328
280
  obj: DisassociateGatewayFromServerOutput
329
281
  ) => any;
330
-
331
282
  export declare const GetGatewayInputFilterSensitiveLog: (
332
283
  obj: GetGatewayInput
333
284
  ) => any;
334
-
285
+ export declare const MaintenanceStartTimeFilterSensitiveLog: (
286
+ obj: MaintenanceStartTime
287
+ ) => any;
335
288
  export declare const GatewayDetailsFilterSensitiveLog: (
336
289
  obj: GatewayDetails
337
290
  ) => any;
338
-
339
291
  export declare const GetGatewayOutputFilterSensitiveLog: (
340
292
  obj: GetGatewayOutput
341
293
  ) => any;
342
-
343
294
  export declare const ListGatewaysInputFilterSensitiveLog: (
344
295
  obj: ListGatewaysInput
345
296
  ) => any;
346
-
347
297
  export declare const GatewayFilterSensitiveLog: (obj: Gateway) => any;
348
-
349
298
  export declare const ListGatewaysOutputFilterSensitiveLog: (
350
299
  obj: ListGatewaysOutput
351
300
  ) => any;
352
-
353
301
  export declare const PutMaintenanceStartTimeInputFilterSensitiveLog: (
354
302
  obj: PutMaintenanceStartTimeInput
355
303
  ) => any;
356
-
357
304
  export declare const PutMaintenanceStartTimeOutputFilterSensitiveLog: (
358
305
  obj: PutMaintenanceStartTimeOutput
359
306
  ) => any;
360
-
361
307
  export declare const TestHypervisorConfigurationInputFilterSensitiveLog: (
362
308
  obj: TestHypervisorConfigurationInput
363
309
  ) => any;
364
-
365
310
  export declare const TestHypervisorConfigurationOutputFilterSensitiveLog: (
366
311
  obj: TestHypervisorConfigurationOutput
367
312
  ) => any;
368
-
369
313
  export declare const UpdateGatewayInformationInputFilterSensitiveLog: (
370
314
  obj: UpdateGatewayInformationInput
371
315
  ) => any;
372
-
373
316
  export declare const UpdateGatewayInformationOutputFilterSensitiveLog: (
374
317
  obj: UpdateGatewayInformationOutput
375
318
  ) => any;
376
-
377
319
  export declare const UpdateGatewaySoftwareNowInputFilterSensitiveLog: (
378
320
  obj: UpdateGatewaySoftwareNowInput
379
321
  ) => any;
380
-
381
322
  export declare const UpdateGatewaySoftwareNowOutputFilterSensitiveLog: (
382
323
  obj: UpdateGatewaySoftwareNowOutput
383
324
  ) => any;
384
-
385
325
  export declare const DeleteHypervisorInputFilterSensitiveLog: (
386
326
  obj: DeleteHypervisorInput
387
327
  ) => any;
388
-
389
328
  export declare const DeleteHypervisorOutputFilterSensitiveLog: (
390
329
  obj: DeleteHypervisorOutput
391
330
  ) => any;
392
-
393
331
  export declare const ImportHypervisorConfigurationInputFilterSensitiveLog: (
394
332
  obj: ImportHypervisorConfigurationInput
395
333
  ) => any;
396
-
397
334
  export declare const ImportHypervisorConfigurationOutputFilterSensitiveLog: (
398
335
  obj: ImportHypervisorConfigurationOutput
399
336
  ) => any;
400
-
401
337
  export declare const ListHypervisorsInputFilterSensitiveLog: (
402
338
  obj: ListHypervisorsInput
403
339
  ) => any;
404
-
405
340
  export declare const HypervisorFilterSensitiveLog: (obj: Hypervisor) => any;
406
-
407
341
  export declare const ListHypervisorsOutputFilterSensitiveLog: (
408
342
  obj: ListHypervisorsOutput
409
343
  ) => any;
410
-
411
344
  export declare const UpdateHypervisorInputFilterSensitiveLog: (
412
345
  obj: UpdateHypervisorInput
413
346
  ) => any;
414
-
415
347
  export declare const UpdateHypervisorOutputFilterSensitiveLog: (
416
348
  obj: UpdateHypervisorOutput
417
349
  ) => any;
418
-
419
350
  export declare const ListTagsForResourceInputFilterSensitiveLog: (
420
351
  obj: ListTagsForResourceInput
421
352
  ) => any;
422
-
423
353
  export declare const ListTagsForResourceOutputFilterSensitiveLog: (
424
354
  obj: ListTagsForResourceOutput
425
355
  ) => any;
426
-
427
- export declare const ListVirtualMachinesInputFilterSensitiveLog: (
428
- obj: ListVirtualMachinesInput
429
- ) => any;
430
-
431
- export declare const VirtualMachineFilterSensitiveLog: (
432
- obj: VirtualMachine
433
- ) => any;
434
-
435
- export declare const ListVirtualMachinesOutputFilterSensitiveLog: (
436
- obj: ListVirtualMachinesOutput
437
- ) => any;
438
-
439
356
  export declare const TagResourceInputFilterSensitiveLog: (
440
357
  obj: TagResourceInput
441
358
  ) => any;
442
-
443
359
  export declare const TagResourceOutputFilterSensitiveLog: (
444
360
  obj: TagResourceOutput
445
361
  ) => any;
446
-
447
362
  export declare const UntagResourceInputFilterSensitiveLog: (
448
363
  obj: UntagResourceInput
449
364
  ) => any;
450
-
451
365
  export declare const UntagResourceOutputFilterSensitiveLog: (
452
366
  obj: UntagResourceOutput
453
367
  ) => any;
368
+ export declare const GetVirtualMachineInputFilterSensitiveLog: (
369
+ obj: GetVirtualMachineInput
370
+ ) => any;
371
+ export declare const VirtualMachineDetailsFilterSensitiveLog: (
372
+ obj: VirtualMachineDetails
373
+ ) => any;
374
+ export declare const GetVirtualMachineOutputFilterSensitiveLog: (
375
+ obj: GetVirtualMachineOutput
376
+ ) => any;
377
+ export declare const ListVirtualMachinesInputFilterSensitiveLog: (
378
+ obj: ListVirtualMachinesInput
379
+ ) => any;
380
+ export declare const VirtualMachineFilterSensitiveLog: (
381
+ obj: VirtualMachine
382
+ ) => any;
383
+ export declare const ListVirtualMachinesOutputFilterSensitiveLog: (
384
+ obj: ListVirtualMachinesOutput
385
+ ) => any;
@@ -27,6 +27,10 @@ import {
27
27
  GetGatewayCommandInput,
28
28
  GetGatewayCommandOutput,
29
29
  } from "../commands/GetGatewayCommand";
30
+ import {
31
+ GetVirtualMachineCommandInput,
32
+ GetVirtualMachineCommandOutput,
33
+ } from "../commands/GetVirtualMachineCommand";
30
34
  import {
31
35
  ImportHypervisorConfigurationCommandInput,
32
36
  ImportHypervisorConfigurationCommandOutput,
@@ -99,6 +103,10 @@ export declare const serializeAws_json1_0GetGatewayCommand: (
99
103
  input: GetGatewayCommandInput,
100
104
  context: __SerdeContext
101
105
  ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_json1_0GetVirtualMachineCommand: (
107
+ input: GetVirtualMachineCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
102
110
  export declare const serializeAws_json1_0ImportHypervisorConfigurationCommand: (
103
111
  input: ImportHypervisorConfigurationCommandInput,
104
112
  context: __SerdeContext
@@ -171,6 +179,10 @@ export declare const deserializeAws_json1_0GetGatewayCommand: (
171
179
  output: __HttpResponse,
172
180
  context: __SerdeContext
173
181
  ) => Promise<GetGatewayCommandOutput>;
182
+ export declare const deserializeAws_json1_0GetVirtualMachineCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<GetVirtualMachineCommandOutput>;
174
186
  export declare const deserializeAws_json1_0ImportHypervisorConfigurationCommand: (
175
187
  output: __HttpResponse,
176
188
  context: __SerdeContext
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { BackupGatewayClientConfig } from "./BackupGatewayClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { BackupGatewayClientConfig } from "./BackupGatewayClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -1,5 +1,4 @@
1
1
  import { BackupGatewayClientConfig } from "./BackupGatewayClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { BackupGatewayClientConfig } from "./BackupGatewayClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-backup-gateway",
3
3
  "description": "AWS SDK for JavaScript Backup Gateway Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.177.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.171.0",
23
+ "@aws-sdk/config-resolver": "3.171.0",
24
+ "@aws-sdk/credential-provider-node": "3.171.0",
25
+ "@aws-sdk/fetch-http-handler": "3.171.0",
26
+ "@aws-sdk/hash-node": "3.171.0",
27
+ "@aws-sdk/invalid-dependency": "3.171.0",
28
+ "@aws-sdk/middleware-content-length": "3.171.0",
29
+ "@aws-sdk/middleware-host-header": "3.171.0",
30
+ "@aws-sdk/middleware-logger": "3.171.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
+ "@aws-sdk/middleware-retry": "3.171.0",
33
+ "@aws-sdk/middleware-serde": "3.171.0",
34
+ "@aws-sdk/middleware-signing": "3.171.0",
35
+ "@aws-sdk/middleware-stack": "3.171.0",
36
+ "@aws-sdk/middleware-user-agent": "3.171.0",
37
+ "@aws-sdk/node-config-provider": "3.171.0",
38
+ "@aws-sdk/node-http-handler": "3.171.0",
39
+ "@aws-sdk/protocol-http": "3.171.0",
40
+ "@aws-sdk/smithy-client": "3.171.0",
41
+ "@aws-sdk/types": "3.171.0",
42
+ "@aws-sdk/url-parser": "3.171.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.171.0",
50
+ "@aws-sdk/util-user-agent-node": "3.171.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"