@aws-sdk/client-mediaconnect 3.312.0 → 3.313.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 (123) hide show
  1. package/README.md +167 -7
  2. package/dist-cjs/MediaConnect.js +300 -0
  3. package/dist-cjs/commands/AddBridgeOutputsCommand.js +45 -0
  4. package/dist-cjs/commands/AddBridgeSourcesCommand.js +45 -0
  5. package/dist-cjs/commands/CreateBridgeCommand.js +45 -0
  6. package/dist-cjs/commands/CreateGatewayCommand.js +45 -0
  7. package/dist-cjs/commands/DeleteBridgeCommand.js +45 -0
  8. package/dist-cjs/commands/DeleteGatewayCommand.js +45 -0
  9. package/dist-cjs/commands/DeregisterGatewayInstanceCommand.js +45 -0
  10. package/dist-cjs/commands/DescribeBridgeCommand.js +45 -0
  11. package/dist-cjs/commands/DescribeGatewayCommand.js +45 -0
  12. package/dist-cjs/commands/DescribeGatewayInstanceCommand.js +45 -0
  13. package/dist-cjs/commands/ListBridgesCommand.js +45 -0
  14. package/dist-cjs/commands/ListGatewayInstancesCommand.js +45 -0
  15. package/dist-cjs/commands/ListGatewaysCommand.js +45 -0
  16. package/dist-cjs/commands/RemoveBridgeOutputCommand.js +45 -0
  17. package/dist-cjs/commands/RemoveBridgeSourceCommand.js +45 -0
  18. package/dist-cjs/commands/UpdateBridgeCommand.js +45 -0
  19. package/dist-cjs/commands/UpdateBridgeOutputCommand.js +45 -0
  20. package/dist-cjs/commands/UpdateBridgeSourceCommand.js +45 -0
  21. package/dist-cjs/commands/UpdateBridgeStateCommand.js +45 -0
  22. package/dist-cjs/commands/UpdateGatewayInstanceCommand.js +45 -0
  23. package/dist-cjs/commands/index.js +20 -0
  24. package/dist-cjs/endpoint/ruleset.js +3 -3
  25. package/dist-cjs/models/models_0.js +106 -20
  26. package/dist-cjs/pagination/ListBridgesPaginator.js +29 -0
  27. package/dist-cjs/pagination/ListGatewayInstancesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListGatewaysPaginator.js +29 -0
  29. package/dist-cjs/pagination/index.js +3 -0
  30. package/dist-cjs/protocols/Aws_restJson1.js +2045 -140
  31. package/dist-es/MediaConnect.js +300 -0
  32. package/dist-es/commands/AddBridgeOutputsCommand.js +41 -0
  33. package/dist-es/commands/AddBridgeSourcesCommand.js +41 -0
  34. package/dist-es/commands/CreateBridgeCommand.js +41 -0
  35. package/dist-es/commands/CreateGatewayCommand.js +41 -0
  36. package/dist-es/commands/DeleteBridgeCommand.js +41 -0
  37. package/dist-es/commands/DeleteGatewayCommand.js +41 -0
  38. package/dist-es/commands/DeregisterGatewayInstanceCommand.js +41 -0
  39. package/dist-es/commands/DescribeBridgeCommand.js +41 -0
  40. package/dist-es/commands/DescribeGatewayCommand.js +41 -0
  41. package/dist-es/commands/DescribeGatewayInstanceCommand.js +41 -0
  42. package/dist-es/commands/ListBridgesCommand.js +41 -0
  43. package/dist-es/commands/ListGatewayInstancesCommand.js +41 -0
  44. package/dist-es/commands/ListGatewaysCommand.js +41 -0
  45. package/dist-es/commands/RemoveBridgeOutputCommand.js +41 -0
  46. package/dist-es/commands/RemoveBridgeSourceCommand.js +41 -0
  47. package/dist-es/commands/UpdateBridgeCommand.js +41 -0
  48. package/dist-es/commands/UpdateBridgeOutputCommand.js +41 -0
  49. package/dist-es/commands/UpdateBridgeSourceCommand.js +41 -0
  50. package/dist-es/commands/UpdateBridgeStateCommand.js +41 -0
  51. package/dist-es/commands/UpdateGatewayInstanceCommand.js +41 -0
  52. package/dist-es/commands/index.js +20 -0
  53. package/dist-es/endpoint/ruleset.js +3 -3
  54. package/dist-es/models/models_0.js +102 -19
  55. package/dist-es/pagination/ListBridgesPaginator.js +25 -0
  56. package/dist-es/pagination/ListGatewayInstancesPaginator.js +25 -0
  57. package/dist-es/pagination/ListGatewaysPaginator.js +25 -0
  58. package/dist-es/pagination/index.js +3 -0
  59. package/dist-es/protocols/Aws_restJson1.js +2002 -137
  60. package/dist-types/MediaConnect.d.ts +160 -0
  61. package/dist-types/MediaConnectClient.d.ts +22 -2
  62. package/dist-types/commands/AddBridgeOutputsCommand.d.ts +96 -0
  63. package/dist-types/commands/AddBridgeSourcesCommand.d.ts +102 -0
  64. package/dist-types/commands/AddFlowOutputsCommand.d.ts +1 -1
  65. package/dist-types/commands/AddFlowSourcesCommand.d.ts +7 -1
  66. package/dist-types/commands/CreateBridgeCommand.d.ts +130 -0
  67. package/dist-types/commands/CreateFlowCommand.d.ts +15 -3
  68. package/dist-types/commands/CreateGatewayCommand.d.ts +93 -0
  69. package/dist-types/commands/DeleteBridgeCommand.d.ts +84 -0
  70. package/dist-types/commands/DeleteGatewayCommand.d.ts +84 -0
  71. package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +85 -0
  72. package/dist-types/commands/DescribeBridgeCommand.d.ts +84 -0
  73. package/dist-types/commands/DescribeGatewayCommand.d.ts +84 -0
  74. package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +84 -0
  75. package/dist-types/commands/ListBridgesCommand.d.ts +80 -0
  76. package/dist-types/commands/ListGatewayInstancesCommand.d.ts +80 -0
  77. package/dist-types/commands/ListGatewaysCommand.d.ts +79 -0
  78. package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +85 -0
  79. package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +85 -0
  80. package/dist-types/commands/UpdateBridgeCommand.d.ts +99 -0
  81. package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +92 -0
  82. package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +97 -0
  83. package/dist-types/commands/UpdateBridgeStateCommand.d.ts +85 -0
  84. package/dist-types/commands/UpdateFlowOutputCommand.d.ts +1 -1
  85. package/dist-types/commands/UpdateFlowSourceCommand.d.ts +7 -1
  86. package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +85 -0
  87. package/dist-types/commands/index.d.ts +20 -0
  88. package/dist-types/models/models_0.d.ts +1340 -85
  89. package/dist-types/pagination/ListBridgesPaginator.d.ts +7 -0
  90. package/dist-types/pagination/ListGatewayInstancesPaginator.d.ts +7 -0
  91. package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
  92. package/dist-types/pagination/index.d.ts +3 -0
  93. package/dist-types/protocols/Aws_restJson1.d.ts +180 -0
  94. package/dist-types/ts3.4/MediaConnect.d.ts +340 -0
  95. package/dist-types/ts3.4/MediaConnectClient.d.ts +122 -2
  96. package/dist-types/ts3.4/commands/AddBridgeOutputsCommand.d.ts +37 -0
  97. package/dist-types/ts3.4/commands/AddBridgeSourcesCommand.d.ts +37 -0
  98. package/dist-types/ts3.4/commands/CreateBridgeCommand.d.ts +34 -0
  99. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +37 -0
  100. package/dist-types/ts3.4/commands/DeleteBridgeCommand.d.ts +34 -0
  101. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +37 -0
  102. package/dist-types/ts3.4/commands/DeregisterGatewayInstanceCommand.d.ts +41 -0
  103. package/dist-types/ts3.4/commands/DescribeBridgeCommand.d.ts +37 -0
  104. package/dist-types/ts3.4/commands/DescribeGatewayCommand.d.ts +37 -0
  105. package/dist-types/ts3.4/commands/DescribeGatewayInstanceCommand.d.ts +41 -0
  106. package/dist-types/ts3.4/commands/ListBridgesCommand.d.ts +34 -0
  107. package/dist-types/ts3.4/commands/ListGatewayInstancesCommand.d.ts +41 -0
  108. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +34 -0
  109. package/dist-types/ts3.4/commands/RemoveBridgeOutputCommand.d.ts +38 -0
  110. package/dist-types/ts3.4/commands/RemoveBridgeSourceCommand.d.ts +38 -0
  111. package/dist-types/ts3.4/commands/UpdateBridgeCommand.d.ts +34 -0
  112. package/dist-types/ts3.4/commands/UpdateBridgeOutputCommand.d.ts +38 -0
  113. package/dist-types/ts3.4/commands/UpdateBridgeSourceCommand.d.ts +38 -0
  114. package/dist-types/ts3.4/commands/UpdateBridgeStateCommand.d.ts +38 -0
  115. package/dist-types/ts3.4/commands/UpdateGatewayInstanceCommand.d.ts +41 -0
  116. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +442 -33
  118. package/dist-types/ts3.4/pagination/ListBridgesPaginator.d.ts +11 -0
  119. package/dist-types/ts3.4/pagination/ListGatewayInstancesPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  122. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +240 -0
  123. package/package.json +1 -1
@@ -1,4 +1,12 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ AddBridgeOutputsCommandInput,
4
+ AddBridgeOutputsCommandOutput,
5
+ } from "./commands/AddBridgeOutputsCommand";
6
+ import {
7
+ AddBridgeSourcesCommandInput,
8
+ AddBridgeSourcesCommandOutput,
9
+ } from "./commands/AddBridgeSourcesCommand";
2
10
  import {
3
11
  AddFlowMediaStreamsCommandInput,
4
12
  AddFlowMediaStreamsCommandOutput,
@@ -15,18 +23,50 @@ import {
15
23
  AddFlowVpcInterfacesCommandInput,
16
24
  AddFlowVpcInterfacesCommandOutput,
17
25
  } from "./commands/AddFlowVpcInterfacesCommand";
26
+ import {
27
+ CreateBridgeCommandInput,
28
+ CreateBridgeCommandOutput,
29
+ } from "./commands/CreateBridgeCommand";
18
30
  import {
19
31
  CreateFlowCommandInput,
20
32
  CreateFlowCommandOutput,
21
33
  } from "./commands/CreateFlowCommand";
34
+ import {
35
+ CreateGatewayCommandInput,
36
+ CreateGatewayCommandOutput,
37
+ } from "./commands/CreateGatewayCommand";
38
+ import {
39
+ DeleteBridgeCommandInput,
40
+ DeleteBridgeCommandOutput,
41
+ } from "./commands/DeleteBridgeCommand";
22
42
  import {
23
43
  DeleteFlowCommandInput,
24
44
  DeleteFlowCommandOutput,
25
45
  } from "./commands/DeleteFlowCommand";
46
+ import {
47
+ DeleteGatewayCommandInput,
48
+ DeleteGatewayCommandOutput,
49
+ } from "./commands/DeleteGatewayCommand";
50
+ import {
51
+ DeregisterGatewayInstanceCommandInput,
52
+ DeregisterGatewayInstanceCommandOutput,
53
+ } from "./commands/DeregisterGatewayInstanceCommand";
54
+ import {
55
+ DescribeBridgeCommandInput,
56
+ DescribeBridgeCommandOutput,
57
+ } from "./commands/DescribeBridgeCommand";
26
58
  import {
27
59
  DescribeFlowCommandInput,
28
60
  DescribeFlowCommandOutput,
29
61
  } from "./commands/DescribeFlowCommand";
62
+ import {
63
+ DescribeGatewayCommandInput,
64
+ DescribeGatewayCommandOutput,
65
+ } from "./commands/DescribeGatewayCommand";
66
+ import {
67
+ DescribeGatewayInstanceCommandInput,
68
+ DescribeGatewayInstanceCommandOutput,
69
+ } from "./commands/DescribeGatewayInstanceCommand";
30
70
  import {
31
71
  DescribeOfferingCommandInput,
32
72
  DescribeOfferingCommandOutput,
@@ -39,6 +79,10 @@ import {
39
79
  GrantFlowEntitlementsCommandInput,
40
80
  GrantFlowEntitlementsCommandOutput,
41
81
  } from "./commands/GrantFlowEntitlementsCommand";
82
+ import {
83
+ ListBridgesCommandInput,
84
+ ListBridgesCommandOutput,
85
+ } from "./commands/ListBridgesCommand";
42
86
  import {
43
87
  ListEntitlementsCommandInput,
44
88
  ListEntitlementsCommandOutput,
@@ -47,6 +91,14 @@ import {
47
91
  ListFlowsCommandInput,
48
92
  ListFlowsCommandOutput,
49
93
  } from "./commands/ListFlowsCommand";
94
+ import {
95
+ ListGatewayInstancesCommandInput,
96
+ ListGatewayInstancesCommandOutput,
97
+ } from "./commands/ListGatewayInstancesCommand";
98
+ import {
99
+ ListGatewaysCommandInput,
100
+ ListGatewaysCommandOutput,
101
+ } from "./commands/ListGatewaysCommand";
50
102
  import {
51
103
  ListOfferingsCommandInput,
52
104
  ListOfferingsCommandOutput,
@@ -63,6 +115,14 @@ import {
63
115
  PurchaseOfferingCommandInput,
64
116
  PurchaseOfferingCommandOutput,
65
117
  } from "./commands/PurchaseOfferingCommand";
118
+ import {
119
+ RemoveBridgeOutputCommandInput,
120
+ RemoveBridgeOutputCommandOutput,
121
+ } from "./commands/RemoveBridgeOutputCommand";
122
+ import {
123
+ RemoveBridgeSourceCommandInput,
124
+ RemoveBridgeSourceCommandOutput,
125
+ } from "./commands/RemoveBridgeSourceCommand";
66
126
  import {
67
127
  RemoveFlowMediaStreamCommandInput,
68
128
  RemoveFlowMediaStreamCommandOutput,
@@ -99,6 +159,22 @@ import {
99
159
  UntagResourceCommandInput,
100
160
  UntagResourceCommandOutput,
101
161
  } from "./commands/UntagResourceCommand";
162
+ import {
163
+ UpdateBridgeCommandInput,
164
+ UpdateBridgeCommandOutput,
165
+ } from "./commands/UpdateBridgeCommand";
166
+ import {
167
+ UpdateBridgeOutputCommandInput,
168
+ UpdateBridgeOutputCommandOutput,
169
+ } from "./commands/UpdateBridgeOutputCommand";
170
+ import {
171
+ UpdateBridgeSourceCommandInput,
172
+ UpdateBridgeSourceCommandOutput,
173
+ } from "./commands/UpdateBridgeSourceCommand";
174
+ import {
175
+ UpdateBridgeStateCommandInput,
176
+ UpdateBridgeStateCommandOutput,
177
+ } from "./commands/UpdateBridgeStateCommand";
102
178
  import {
103
179
  UpdateFlowCommandInput,
104
180
  UpdateFlowCommandOutput,
@@ -119,8 +195,38 @@ import {
119
195
  UpdateFlowSourceCommandInput,
120
196
  UpdateFlowSourceCommandOutput,
121
197
  } from "./commands/UpdateFlowSourceCommand";
198
+ import {
199
+ UpdateGatewayInstanceCommandInput,
200
+ UpdateGatewayInstanceCommandOutput,
201
+ } from "./commands/UpdateGatewayInstanceCommand";
122
202
  import { MediaConnectClient } from "./MediaConnectClient";
123
203
  export declare class MediaConnect extends MediaConnectClient {
204
+ addBridgeOutputs(
205
+ args: AddBridgeOutputsCommandInput,
206
+ options?: __HttpHandlerOptions
207
+ ): Promise<AddBridgeOutputsCommandOutput>;
208
+ addBridgeOutputs(
209
+ args: AddBridgeOutputsCommandInput,
210
+ cb: (err: any, data?: AddBridgeOutputsCommandOutput) => void
211
+ ): void;
212
+ addBridgeOutputs(
213
+ args: AddBridgeOutputsCommandInput,
214
+ options: __HttpHandlerOptions,
215
+ cb: (err: any, data?: AddBridgeOutputsCommandOutput) => void
216
+ ): void;
217
+ addBridgeSources(
218
+ args: AddBridgeSourcesCommandInput,
219
+ options?: __HttpHandlerOptions
220
+ ): Promise<AddBridgeSourcesCommandOutput>;
221
+ addBridgeSources(
222
+ args: AddBridgeSourcesCommandInput,
223
+ cb: (err: any, data?: AddBridgeSourcesCommandOutput) => void
224
+ ): void;
225
+ addBridgeSources(
226
+ args: AddBridgeSourcesCommandInput,
227
+ options: __HttpHandlerOptions,
228
+ cb: (err: any, data?: AddBridgeSourcesCommandOutput) => void
229
+ ): void;
124
230
  addFlowMediaStreams(
125
231
  args: AddFlowMediaStreamsCommandInput,
126
232
  options?: __HttpHandlerOptions
@@ -173,6 +279,19 @@ export declare class MediaConnect extends MediaConnectClient {
173
279
  options: __HttpHandlerOptions,
174
280
  cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void
175
281
  ): void;
282
+ createBridge(
283
+ args: CreateBridgeCommandInput,
284
+ options?: __HttpHandlerOptions
285
+ ): Promise<CreateBridgeCommandOutput>;
286
+ createBridge(
287
+ args: CreateBridgeCommandInput,
288
+ cb: (err: any, data?: CreateBridgeCommandOutput) => void
289
+ ): void;
290
+ createBridge(
291
+ args: CreateBridgeCommandInput,
292
+ options: __HttpHandlerOptions,
293
+ cb: (err: any, data?: CreateBridgeCommandOutput) => void
294
+ ): void;
176
295
  createFlow(
177
296
  args: CreateFlowCommandInput,
178
297
  options?: __HttpHandlerOptions
@@ -186,6 +305,32 @@ export declare class MediaConnect extends MediaConnectClient {
186
305
  options: __HttpHandlerOptions,
187
306
  cb: (err: any, data?: CreateFlowCommandOutput) => void
188
307
  ): void;
308
+ createGateway(
309
+ args: CreateGatewayCommandInput,
310
+ options?: __HttpHandlerOptions
311
+ ): Promise<CreateGatewayCommandOutput>;
312
+ createGateway(
313
+ args: CreateGatewayCommandInput,
314
+ cb: (err: any, data?: CreateGatewayCommandOutput) => void
315
+ ): void;
316
+ createGateway(
317
+ args: CreateGatewayCommandInput,
318
+ options: __HttpHandlerOptions,
319
+ cb: (err: any, data?: CreateGatewayCommandOutput) => void
320
+ ): void;
321
+ deleteBridge(
322
+ args: DeleteBridgeCommandInput,
323
+ options?: __HttpHandlerOptions
324
+ ): Promise<DeleteBridgeCommandOutput>;
325
+ deleteBridge(
326
+ args: DeleteBridgeCommandInput,
327
+ cb: (err: any, data?: DeleteBridgeCommandOutput) => void
328
+ ): void;
329
+ deleteBridge(
330
+ args: DeleteBridgeCommandInput,
331
+ options: __HttpHandlerOptions,
332
+ cb: (err: any, data?: DeleteBridgeCommandOutput) => void
333
+ ): void;
189
334
  deleteFlow(
190
335
  args: DeleteFlowCommandInput,
191
336
  options?: __HttpHandlerOptions
@@ -199,6 +344,45 @@ export declare class MediaConnect extends MediaConnectClient {
199
344
  options: __HttpHandlerOptions,
200
345
  cb: (err: any, data?: DeleteFlowCommandOutput) => void
201
346
  ): void;
347
+ deleteGateway(
348
+ args: DeleteGatewayCommandInput,
349
+ options?: __HttpHandlerOptions
350
+ ): Promise<DeleteGatewayCommandOutput>;
351
+ deleteGateway(
352
+ args: DeleteGatewayCommandInput,
353
+ cb: (err: any, data?: DeleteGatewayCommandOutput) => void
354
+ ): void;
355
+ deleteGateway(
356
+ args: DeleteGatewayCommandInput,
357
+ options: __HttpHandlerOptions,
358
+ cb: (err: any, data?: DeleteGatewayCommandOutput) => void
359
+ ): void;
360
+ deregisterGatewayInstance(
361
+ args: DeregisterGatewayInstanceCommandInput,
362
+ options?: __HttpHandlerOptions
363
+ ): Promise<DeregisterGatewayInstanceCommandOutput>;
364
+ deregisterGatewayInstance(
365
+ args: DeregisterGatewayInstanceCommandInput,
366
+ cb: (err: any, data?: DeregisterGatewayInstanceCommandOutput) => void
367
+ ): void;
368
+ deregisterGatewayInstance(
369
+ args: DeregisterGatewayInstanceCommandInput,
370
+ options: __HttpHandlerOptions,
371
+ cb: (err: any, data?: DeregisterGatewayInstanceCommandOutput) => void
372
+ ): void;
373
+ describeBridge(
374
+ args: DescribeBridgeCommandInput,
375
+ options?: __HttpHandlerOptions
376
+ ): Promise<DescribeBridgeCommandOutput>;
377
+ describeBridge(
378
+ args: DescribeBridgeCommandInput,
379
+ cb: (err: any, data?: DescribeBridgeCommandOutput) => void
380
+ ): void;
381
+ describeBridge(
382
+ args: DescribeBridgeCommandInput,
383
+ options: __HttpHandlerOptions,
384
+ cb: (err: any, data?: DescribeBridgeCommandOutput) => void
385
+ ): void;
202
386
  describeFlow(
203
387
  args: DescribeFlowCommandInput,
204
388
  options?: __HttpHandlerOptions
@@ -212,6 +396,32 @@ export declare class MediaConnect extends MediaConnectClient {
212
396
  options: __HttpHandlerOptions,
213
397
  cb: (err: any, data?: DescribeFlowCommandOutput) => void
214
398
  ): void;
399
+ describeGateway(
400
+ args: DescribeGatewayCommandInput,
401
+ options?: __HttpHandlerOptions
402
+ ): Promise<DescribeGatewayCommandOutput>;
403
+ describeGateway(
404
+ args: DescribeGatewayCommandInput,
405
+ cb: (err: any, data?: DescribeGatewayCommandOutput) => void
406
+ ): void;
407
+ describeGateway(
408
+ args: DescribeGatewayCommandInput,
409
+ options: __HttpHandlerOptions,
410
+ cb: (err: any, data?: DescribeGatewayCommandOutput) => void
411
+ ): void;
412
+ describeGatewayInstance(
413
+ args: DescribeGatewayInstanceCommandInput,
414
+ options?: __HttpHandlerOptions
415
+ ): Promise<DescribeGatewayInstanceCommandOutput>;
416
+ describeGatewayInstance(
417
+ args: DescribeGatewayInstanceCommandInput,
418
+ cb: (err: any, data?: DescribeGatewayInstanceCommandOutput) => void
419
+ ): void;
420
+ describeGatewayInstance(
421
+ args: DescribeGatewayInstanceCommandInput,
422
+ options: __HttpHandlerOptions,
423
+ cb: (err: any, data?: DescribeGatewayInstanceCommandOutput) => void
424
+ ): void;
215
425
  describeOffering(
216
426
  args: DescribeOfferingCommandInput,
217
427
  options?: __HttpHandlerOptions
@@ -251,6 +461,19 @@ export declare class MediaConnect extends MediaConnectClient {
251
461
  options: __HttpHandlerOptions,
252
462
  cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void
253
463
  ): void;
464
+ listBridges(
465
+ args: ListBridgesCommandInput,
466
+ options?: __HttpHandlerOptions
467
+ ): Promise<ListBridgesCommandOutput>;
468
+ listBridges(
469
+ args: ListBridgesCommandInput,
470
+ cb: (err: any, data?: ListBridgesCommandOutput) => void
471
+ ): void;
472
+ listBridges(
473
+ args: ListBridgesCommandInput,
474
+ options: __HttpHandlerOptions,
475
+ cb: (err: any, data?: ListBridgesCommandOutput) => void
476
+ ): void;
254
477
  listEntitlements(
255
478
  args: ListEntitlementsCommandInput,
256
479
  options?: __HttpHandlerOptions
@@ -277,6 +500,32 @@ export declare class MediaConnect extends MediaConnectClient {
277
500
  options: __HttpHandlerOptions,
278
501
  cb: (err: any, data?: ListFlowsCommandOutput) => void
279
502
  ): void;
503
+ listGatewayInstances(
504
+ args: ListGatewayInstancesCommandInput,
505
+ options?: __HttpHandlerOptions
506
+ ): Promise<ListGatewayInstancesCommandOutput>;
507
+ listGatewayInstances(
508
+ args: ListGatewayInstancesCommandInput,
509
+ cb: (err: any, data?: ListGatewayInstancesCommandOutput) => void
510
+ ): void;
511
+ listGatewayInstances(
512
+ args: ListGatewayInstancesCommandInput,
513
+ options: __HttpHandlerOptions,
514
+ cb: (err: any, data?: ListGatewayInstancesCommandOutput) => void
515
+ ): void;
516
+ listGateways(
517
+ args: ListGatewaysCommandInput,
518
+ options?: __HttpHandlerOptions
519
+ ): Promise<ListGatewaysCommandOutput>;
520
+ listGateways(
521
+ args: ListGatewaysCommandInput,
522
+ cb: (err: any, data?: ListGatewaysCommandOutput) => void
523
+ ): void;
524
+ listGateways(
525
+ args: ListGatewaysCommandInput,
526
+ options: __HttpHandlerOptions,
527
+ cb: (err: any, data?: ListGatewaysCommandOutput) => void
528
+ ): void;
280
529
  listOfferings(
281
530
  args: ListOfferingsCommandInput,
282
531
  options?: __HttpHandlerOptions
@@ -329,6 +578,32 @@ export declare class MediaConnect extends MediaConnectClient {
329
578
  options: __HttpHandlerOptions,
330
579
  cb: (err: any, data?: PurchaseOfferingCommandOutput) => void
331
580
  ): void;
581
+ removeBridgeOutput(
582
+ args: RemoveBridgeOutputCommandInput,
583
+ options?: __HttpHandlerOptions
584
+ ): Promise<RemoveBridgeOutputCommandOutput>;
585
+ removeBridgeOutput(
586
+ args: RemoveBridgeOutputCommandInput,
587
+ cb: (err: any, data?: RemoveBridgeOutputCommandOutput) => void
588
+ ): void;
589
+ removeBridgeOutput(
590
+ args: RemoveBridgeOutputCommandInput,
591
+ options: __HttpHandlerOptions,
592
+ cb: (err: any, data?: RemoveBridgeOutputCommandOutput) => void
593
+ ): void;
594
+ removeBridgeSource(
595
+ args: RemoveBridgeSourceCommandInput,
596
+ options?: __HttpHandlerOptions
597
+ ): Promise<RemoveBridgeSourceCommandOutput>;
598
+ removeBridgeSource(
599
+ args: RemoveBridgeSourceCommandInput,
600
+ cb: (err: any, data?: RemoveBridgeSourceCommandOutput) => void
601
+ ): void;
602
+ removeBridgeSource(
603
+ args: RemoveBridgeSourceCommandInput,
604
+ options: __HttpHandlerOptions,
605
+ cb: (err: any, data?: RemoveBridgeSourceCommandOutput) => void
606
+ ): void;
332
607
  removeFlowMediaStream(
333
608
  args: RemoveFlowMediaStreamCommandInput,
334
609
  options?: __HttpHandlerOptions
@@ -446,6 +721,58 @@ export declare class MediaConnect extends MediaConnectClient {
446
721
  options: __HttpHandlerOptions,
447
722
  cb: (err: any, data?: UntagResourceCommandOutput) => void
448
723
  ): void;
724
+ updateBridge(
725
+ args: UpdateBridgeCommandInput,
726
+ options?: __HttpHandlerOptions
727
+ ): Promise<UpdateBridgeCommandOutput>;
728
+ updateBridge(
729
+ args: UpdateBridgeCommandInput,
730
+ cb: (err: any, data?: UpdateBridgeCommandOutput) => void
731
+ ): void;
732
+ updateBridge(
733
+ args: UpdateBridgeCommandInput,
734
+ options: __HttpHandlerOptions,
735
+ cb: (err: any, data?: UpdateBridgeCommandOutput) => void
736
+ ): void;
737
+ updateBridgeOutput(
738
+ args: UpdateBridgeOutputCommandInput,
739
+ options?: __HttpHandlerOptions
740
+ ): Promise<UpdateBridgeOutputCommandOutput>;
741
+ updateBridgeOutput(
742
+ args: UpdateBridgeOutputCommandInput,
743
+ cb: (err: any, data?: UpdateBridgeOutputCommandOutput) => void
744
+ ): void;
745
+ updateBridgeOutput(
746
+ args: UpdateBridgeOutputCommandInput,
747
+ options: __HttpHandlerOptions,
748
+ cb: (err: any, data?: UpdateBridgeOutputCommandOutput) => void
749
+ ): void;
750
+ updateBridgeSource(
751
+ args: UpdateBridgeSourceCommandInput,
752
+ options?: __HttpHandlerOptions
753
+ ): Promise<UpdateBridgeSourceCommandOutput>;
754
+ updateBridgeSource(
755
+ args: UpdateBridgeSourceCommandInput,
756
+ cb: (err: any, data?: UpdateBridgeSourceCommandOutput) => void
757
+ ): void;
758
+ updateBridgeSource(
759
+ args: UpdateBridgeSourceCommandInput,
760
+ options: __HttpHandlerOptions,
761
+ cb: (err: any, data?: UpdateBridgeSourceCommandOutput) => void
762
+ ): void;
763
+ updateBridgeState(
764
+ args: UpdateBridgeStateCommandInput,
765
+ options?: __HttpHandlerOptions
766
+ ): Promise<UpdateBridgeStateCommandOutput>;
767
+ updateBridgeState(
768
+ args: UpdateBridgeStateCommandInput,
769
+ cb: (err: any, data?: UpdateBridgeStateCommandOutput) => void
770
+ ): void;
771
+ updateBridgeState(
772
+ args: UpdateBridgeStateCommandInput,
773
+ options: __HttpHandlerOptions,
774
+ cb: (err: any, data?: UpdateBridgeStateCommandOutput) => void
775
+ ): void;
449
776
  updateFlow(
450
777
  args: UpdateFlowCommandInput,
451
778
  options?: __HttpHandlerOptions
@@ -511,4 +838,17 @@ export declare class MediaConnect extends MediaConnectClient {
511
838
  options: __HttpHandlerOptions,
512
839
  cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void
513
840
  ): void;
841
+ updateGatewayInstance(
842
+ args: UpdateGatewayInstanceCommandInput,
843
+ options?: __HttpHandlerOptions
844
+ ): Promise<UpdateGatewayInstanceCommandOutput>;
845
+ updateGatewayInstance(
846
+ args: UpdateGatewayInstanceCommandInput,
847
+ cb: (err: any, data?: UpdateGatewayInstanceCommandOutput) => void
848
+ ): void;
849
+ updateGatewayInstance(
850
+ args: UpdateGatewayInstanceCommandInput,
851
+ options: __HttpHandlerOptions,
852
+ cb: (err: any, data?: UpdateGatewayInstanceCommandOutput) => void
853
+ ): void;
514
854
  }
@@ -44,6 +44,14 @@ import {
44
44
  UrlParser as __UrlParser,
45
45
  UserAgent as __UserAgent,
46
46
  } from "@aws-sdk/types";
47
+ import {
48
+ AddBridgeOutputsCommandInput,
49
+ AddBridgeOutputsCommandOutput,
50
+ } from "./commands/AddBridgeOutputsCommand";
51
+ import {
52
+ AddBridgeSourcesCommandInput,
53
+ AddBridgeSourcesCommandOutput,
54
+ } from "./commands/AddBridgeSourcesCommand";
47
55
  import {
48
56
  AddFlowMediaStreamsCommandInput,
49
57
  AddFlowMediaStreamsCommandOutput,
@@ -60,18 +68,50 @@ import {
60
68
  AddFlowVpcInterfacesCommandInput,
61
69
  AddFlowVpcInterfacesCommandOutput,
62
70
  } from "./commands/AddFlowVpcInterfacesCommand";
71
+ import {
72
+ CreateBridgeCommandInput,
73
+ CreateBridgeCommandOutput,
74
+ } from "./commands/CreateBridgeCommand";
63
75
  import {
64
76
  CreateFlowCommandInput,
65
77
  CreateFlowCommandOutput,
66
78
  } from "./commands/CreateFlowCommand";
79
+ import {
80
+ CreateGatewayCommandInput,
81
+ CreateGatewayCommandOutput,
82
+ } from "./commands/CreateGatewayCommand";
83
+ import {
84
+ DeleteBridgeCommandInput,
85
+ DeleteBridgeCommandOutput,
86
+ } from "./commands/DeleteBridgeCommand";
67
87
  import {
68
88
  DeleteFlowCommandInput,
69
89
  DeleteFlowCommandOutput,
70
90
  } from "./commands/DeleteFlowCommand";
91
+ import {
92
+ DeleteGatewayCommandInput,
93
+ DeleteGatewayCommandOutput,
94
+ } from "./commands/DeleteGatewayCommand";
95
+ import {
96
+ DeregisterGatewayInstanceCommandInput,
97
+ DeregisterGatewayInstanceCommandOutput,
98
+ } from "./commands/DeregisterGatewayInstanceCommand";
99
+ import {
100
+ DescribeBridgeCommandInput,
101
+ DescribeBridgeCommandOutput,
102
+ } from "./commands/DescribeBridgeCommand";
71
103
  import {
72
104
  DescribeFlowCommandInput,
73
105
  DescribeFlowCommandOutput,
74
106
  } from "./commands/DescribeFlowCommand";
107
+ import {
108
+ DescribeGatewayCommandInput,
109
+ DescribeGatewayCommandOutput,
110
+ } from "./commands/DescribeGatewayCommand";
111
+ import {
112
+ DescribeGatewayInstanceCommandInput,
113
+ DescribeGatewayInstanceCommandOutput,
114
+ } from "./commands/DescribeGatewayInstanceCommand";
75
115
  import {
76
116
  DescribeOfferingCommandInput,
77
117
  DescribeOfferingCommandOutput,
@@ -84,6 +124,10 @@ import {
84
124
  GrantFlowEntitlementsCommandInput,
85
125
  GrantFlowEntitlementsCommandOutput,
86
126
  } from "./commands/GrantFlowEntitlementsCommand";
127
+ import {
128
+ ListBridgesCommandInput,
129
+ ListBridgesCommandOutput,
130
+ } from "./commands/ListBridgesCommand";
87
131
  import {
88
132
  ListEntitlementsCommandInput,
89
133
  ListEntitlementsCommandOutput,
@@ -92,6 +136,14 @@ import {
92
136
  ListFlowsCommandInput,
93
137
  ListFlowsCommandOutput,
94
138
  } from "./commands/ListFlowsCommand";
139
+ import {
140
+ ListGatewayInstancesCommandInput,
141
+ ListGatewayInstancesCommandOutput,
142
+ } from "./commands/ListGatewayInstancesCommand";
143
+ import {
144
+ ListGatewaysCommandInput,
145
+ ListGatewaysCommandOutput,
146
+ } from "./commands/ListGatewaysCommand";
95
147
  import {
96
148
  ListOfferingsCommandInput,
97
149
  ListOfferingsCommandOutput,
@@ -108,6 +160,14 @@ import {
108
160
  PurchaseOfferingCommandInput,
109
161
  PurchaseOfferingCommandOutput,
110
162
  } from "./commands/PurchaseOfferingCommand";
163
+ import {
164
+ RemoveBridgeOutputCommandInput,
165
+ RemoveBridgeOutputCommandOutput,
166
+ } from "./commands/RemoveBridgeOutputCommand";
167
+ import {
168
+ RemoveBridgeSourceCommandInput,
169
+ RemoveBridgeSourceCommandOutput,
170
+ } from "./commands/RemoveBridgeSourceCommand";
111
171
  import {
112
172
  RemoveFlowMediaStreamCommandInput,
113
173
  RemoveFlowMediaStreamCommandOutput,
@@ -144,6 +204,22 @@ import {
144
204
  UntagResourceCommandInput,
145
205
  UntagResourceCommandOutput,
146
206
  } from "./commands/UntagResourceCommand";
207
+ import {
208
+ UpdateBridgeCommandInput,
209
+ UpdateBridgeCommandOutput,
210
+ } from "./commands/UpdateBridgeCommand";
211
+ import {
212
+ UpdateBridgeOutputCommandInput,
213
+ UpdateBridgeOutputCommandOutput,
214
+ } from "./commands/UpdateBridgeOutputCommand";
215
+ import {
216
+ UpdateBridgeSourceCommandInput,
217
+ UpdateBridgeSourceCommandOutput,
218
+ } from "./commands/UpdateBridgeSourceCommand";
219
+ import {
220
+ UpdateBridgeStateCommandInput,
221
+ UpdateBridgeStateCommandOutput,
222
+ } from "./commands/UpdateBridgeStateCommand";
147
223
  import {
148
224
  UpdateFlowCommandInput,
149
225
  UpdateFlowCommandOutput,
@@ -164,28 +240,47 @@ import {
164
240
  UpdateFlowSourceCommandInput,
165
241
  UpdateFlowSourceCommandOutput,
166
242
  } from "./commands/UpdateFlowSourceCommand";
243
+ import {
244
+ UpdateGatewayInstanceCommandInput,
245
+ UpdateGatewayInstanceCommandOutput,
246
+ } from "./commands/UpdateGatewayInstanceCommand";
167
247
  import {
168
248
  ClientInputEndpointParameters,
169
249
  ClientResolvedEndpointParameters,
170
250
  EndpointParameters,
171
251
  } from "./endpoint/EndpointParameters";
172
252
  export type ServiceInputTypes =
253
+ | AddBridgeOutputsCommandInput
254
+ | AddBridgeSourcesCommandInput
173
255
  | AddFlowMediaStreamsCommandInput
174
256
  | AddFlowOutputsCommandInput
175
257
  | AddFlowSourcesCommandInput
176
258
  | AddFlowVpcInterfacesCommandInput
259
+ | CreateBridgeCommandInput
177
260
  | CreateFlowCommandInput
261
+ | CreateGatewayCommandInput
262
+ | DeleteBridgeCommandInput
178
263
  | DeleteFlowCommandInput
264
+ | DeleteGatewayCommandInput
265
+ | DeregisterGatewayInstanceCommandInput
266
+ | DescribeBridgeCommandInput
179
267
  | DescribeFlowCommandInput
268
+ | DescribeGatewayCommandInput
269
+ | DescribeGatewayInstanceCommandInput
180
270
  | DescribeOfferingCommandInput
181
271
  | DescribeReservationCommandInput
182
272
  | GrantFlowEntitlementsCommandInput
273
+ | ListBridgesCommandInput
183
274
  | ListEntitlementsCommandInput
184
275
  | ListFlowsCommandInput
276
+ | ListGatewayInstancesCommandInput
277
+ | ListGatewaysCommandInput
185
278
  | ListOfferingsCommandInput
186
279
  | ListReservationsCommandInput
187
280
  | ListTagsForResourceCommandInput
188
281
  | PurchaseOfferingCommandInput
282
+ | RemoveBridgeOutputCommandInput
283
+ | RemoveBridgeSourceCommandInput
189
284
  | RemoveFlowMediaStreamCommandInput
190
285
  | RemoveFlowOutputCommandInput
191
286
  | RemoveFlowSourceCommandInput
@@ -195,28 +290,48 @@ export type ServiceInputTypes =
195
290
  | StopFlowCommandInput
196
291
  | TagResourceCommandInput
197
292
  | UntagResourceCommandInput
293
+ | UpdateBridgeCommandInput
294
+ | UpdateBridgeOutputCommandInput
295
+ | UpdateBridgeSourceCommandInput
296
+ | UpdateBridgeStateCommandInput
198
297
  | UpdateFlowCommandInput
199
298
  | UpdateFlowEntitlementCommandInput
200
299
  | UpdateFlowMediaStreamCommandInput
201
300
  | UpdateFlowOutputCommandInput
202
- | UpdateFlowSourceCommandInput;
301
+ | UpdateFlowSourceCommandInput
302
+ | UpdateGatewayInstanceCommandInput;
203
303
  export type ServiceOutputTypes =
304
+ | AddBridgeOutputsCommandOutput
305
+ | AddBridgeSourcesCommandOutput
204
306
  | AddFlowMediaStreamsCommandOutput
205
307
  | AddFlowOutputsCommandOutput
206
308
  | AddFlowSourcesCommandOutput
207
309
  | AddFlowVpcInterfacesCommandOutput
310
+ | CreateBridgeCommandOutput
208
311
  | CreateFlowCommandOutput
312
+ | CreateGatewayCommandOutput
313
+ | DeleteBridgeCommandOutput
209
314
  | DeleteFlowCommandOutput
315
+ | DeleteGatewayCommandOutput
316
+ | DeregisterGatewayInstanceCommandOutput
317
+ | DescribeBridgeCommandOutput
210
318
  | DescribeFlowCommandOutput
319
+ | DescribeGatewayCommandOutput
320
+ | DescribeGatewayInstanceCommandOutput
211
321
  | DescribeOfferingCommandOutput
212
322
  | DescribeReservationCommandOutput
213
323
  | GrantFlowEntitlementsCommandOutput
324
+ | ListBridgesCommandOutput
214
325
  | ListEntitlementsCommandOutput
215
326
  | ListFlowsCommandOutput
327
+ | ListGatewayInstancesCommandOutput
328
+ | ListGatewaysCommandOutput
216
329
  | ListOfferingsCommandOutput
217
330
  | ListReservationsCommandOutput
218
331
  | ListTagsForResourceCommandOutput
219
332
  | PurchaseOfferingCommandOutput
333
+ | RemoveBridgeOutputCommandOutput
334
+ | RemoveBridgeSourceCommandOutput
220
335
  | RemoveFlowMediaStreamCommandOutput
221
336
  | RemoveFlowOutputCommandOutput
222
337
  | RemoveFlowSourceCommandOutput
@@ -226,11 +341,16 @@ export type ServiceOutputTypes =
226
341
  | StopFlowCommandOutput
227
342
  | TagResourceCommandOutput
228
343
  | UntagResourceCommandOutput
344
+ | UpdateBridgeCommandOutput
345
+ | UpdateBridgeOutputCommandOutput
346
+ | UpdateBridgeSourceCommandOutput
347
+ | UpdateBridgeStateCommandOutput
229
348
  | UpdateFlowCommandOutput
230
349
  | UpdateFlowEntitlementCommandOutput
231
350
  | UpdateFlowMediaStreamCommandOutput
232
351
  | UpdateFlowOutputCommandOutput
233
- | UpdateFlowSourceCommandOutput;
352
+ | UpdateFlowSourceCommandOutput
353
+ | UpdateGatewayInstanceCommandOutput;
234
354
  export interface ClientDefaults
235
355
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
236
356
  requestHandler?: __HttpHandler;