@aws-sdk/client-mediaconnect 3.312.0 → 3.315.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 +2740 -1056
  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 +2627 -983
  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 +6 -6
@@ -3,6 +3,14 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@aws-sdk/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ AddBridgeOutputsCommandInput,
8
+ AddBridgeOutputsCommandOutput,
9
+ } from "../commands/AddBridgeOutputsCommand";
10
+ import {
11
+ AddBridgeSourcesCommandInput,
12
+ AddBridgeSourcesCommandOutput,
13
+ } from "../commands/AddBridgeSourcesCommand";
6
14
  import {
7
15
  AddFlowMediaStreamsCommandInput,
8
16
  AddFlowMediaStreamsCommandOutput,
@@ -19,18 +27,50 @@ import {
19
27
  AddFlowVpcInterfacesCommandInput,
20
28
  AddFlowVpcInterfacesCommandOutput,
21
29
  } from "../commands/AddFlowVpcInterfacesCommand";
30
+ import {
31
+ CreateBridgeCommandInput,
32
+ CreateBridgeCommandOutput,
33
+ } from "../commands/CreateBridgeCommand";
22
34
  import {
23
35
  CreateFlowCommandInput,
24
36
  CreateFlowCommandOutput,
25
37
  } from "../commands/CreateFlowCommand";
38
+ import {
39
+ CreateGatewayCommandInput,
40
+ CreateGatewayCommandOutput,
41
+ } from "../commands/CreateGatewayCommand";
42
+ import {
43
+ DeleteBridgeCommandInput,
44
+ DeleteBridgeCommandOutput,
45
+ } from "../commands/DeleteBridgeCommand";
26
46
  import {
27
47
  DeleteFlowCommandInput,
28
48
  DeleteFlowCommandOutput,
29
49
  } from "../commands/DeleteFlowCommand";
50
+ import {
51
+ DeleteGatewayCommandInput,
52
+ DeleteGatewayCommandOutput,
53
+ } from "../commands/DeleteGatewayCommand";
54
+ import {
55
+ DeregisterGatewayInstanceCommandInput,
56
+ DeregisterGatewayInstanceCommandOutput,
57
+ } from "../commands/DeregisterGatewayInstanceCommand";
58
+ import {
59
+ DescribeBridgeCommandInput,
60
+ DescribeBridgeCommandOutput,
61
+ } from "../commands/DescribeBridgeCommand";
30
62
  import {
31
63
  DescribeFlowCommandInput,
32
64
  DescribeFlowCommandOutput,
33
65
  } from "../commands/DescribeFlowCommand";
66
+ import {
67
+ DescribeGatewayCommandInput,
68
+ DescribeGatewayCommandOutput,
69
+ } from "../commands/DescribeGatewayCommand";
70
+ import {
71
+ DescribeGatewayInstanceCommandInput,
72
+ DescribeGatewayInstanceCommandOutput,
73
+ } from "../commands/DescribeGatewayInstanceCommand";
34
74
  import {
35
75
  DescribeOfferingCommandInput,
36
76
  DescribeOfferingCommandOutput,
@@ -43,6 +83,10 @@ import {
43
83
  GrantFlowEntitlementsCommandInput,
44
84
  GrantFlowEntitlementsCommandOutput,
45
85
  } from "../commands/GrantFlowEntitlementsCommand";
86
+ import {
87
+ ListBridgesCommandInput,
88
+ ListBridgesCommandOutput,
89
+ } from "../commands/ListBridgesCommand";
46
90
  import {
47
91
  ListEntitlementsCommandInput,
48
92
  ListEntitlementsCommandOutput,
@@ -51,6 +95,14 @@ import {
51
95
  ListFlowsCommandInput,
52
96
  ListFlowsCommandOutput,
53
97
  } from "../commands/ListFlowsCommand";
98
+ import {
99
+ ListGatewayInstancesCommandInput,
100
+ ListGatewayInstancesCommandOutput,
101
+ } from "../commands/ListGatewayInstancesCommand";
102
+ import {
103
+ ListGatewaysCommandInput,
104
+ ListGatewaysCommandOutput,
105
+ } from "../commands/ListGatewaysCommand";
54
106
  import {
55
107
  ListOfferingsCommandInput,
56
108
  ListOfferingsCommandOutput,
@@ -67,6 +119,14 @@ import {
67
119
  PurchaseOfferingCommandInput,
68
120
  PurchaseOfferingCommandOutput,
69
121
  } from "../commands/PurchaseOfferingCommand";
122
+ import {
123
+ RemoveBridgeOutputCommandInput,
124
+ RemoveBridgeOutputCommandOutput,
125
+ } from "../commands/RemoveBridgeOutputCommand";
126
+ import {
127
+ RemoveBridgeSourceCommandInput,
128
+ RemoveBridgeSourceCommandOutput,
129
+ } from "../commands/RemoveBridgeSourceCommand";
70
130
  import {
71
131
  RemoveFlowMediaStreamCommandInput,
72
132
  RemoveFlowMediaStreamCommandOutput,
@@ -103,6 +163,22 @@ import {
103
163
  UntagResourceCommandInput,
104
164
  UntagResourceCommandOutput,
105
165
  } from "../commands/UntagResourceCommand";
166
+ import {
167
+ UpdateBridgeCommandInput,
168
+ UpdateBridgeCommandOutput,
169
+ } from "../commands/UpdateBridgeCommand";
170
+ import {
171
+ UpdateBridgeOutputCommandInput,
172
+ UpdateBridgeOutputCommandOutput,
173
+ } from "../commands/UpdateBridgeOutputCommand";
174
+ import {
175
+ UpdateBridgeSourceCommandInput,
176
+ UpdateBridgeSourceCommandOutput,
177
+ } from "../commands/UpdateBridgeSourceCommand";
178
+ import {
179
+ UpdateBridgeStateCommandInput,
180
+ UpdateBridgeStateCommandOutput,
181
+ } from "../commands/UpdateBridgeStateCommand";
106
182
  import {
107
183
  UpdateFlowCommandInput,
108
184
  UpdateFlowCommandOutput,
@@ -123,6 +199,18 @@ import {
123
199
  UpdateFlowSourceCommandInput,
124
200
  UpdateFlowSourceCommandOutput,
125
201
  } from "../commands/UpdateFlowSourceCommand";
202
+ import {
203
+ UpdateGatewayInstanceCommandInput,
204
+ UpdateGatewayInstanceCommandOutput,
205
+ } from "../commands/UpdateGatewayInstanceCommand";
206
+ export declare const se_AddBridgeOutputsCommand: (
207
+ input: AddBridgeOutputsCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const se_AddBridgeSourcesCommand: (
211
+ input: AddBridgeSourcesCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
126
214
  export declare const se_AddFlowMediaStreamsCommand: (
127
215
  input: AddFlowMediaStreamsCommandInput,
128
216
  context: __SerdeContext
@@ -139,18 +227,50 @@ export declare const se_AddFlowVpcInterfacesCommand: (
139
227
  input: AddFlowVpcInterfacesCommandInput,
140
228
  context: __SerdeContext
141
229
  ) => Promise<__HttpRequest>;
230
+ export declare const se_CreateBridgeCommand: (
231
+ input: CreateBridgeCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
142
234
  export declare const se_CreateFlowCommand: (
143
235
  input: CreateFlowCommandInput,
144
236
  context: __SerdeContext
145
237
  ) => Promise<__HttpRequest>;
238
+ export declare const se_CreateGatewayCommand: (
239
+ input: CreateGatewayCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const se_DeleteBridgeCommand: (
243
+ input: DeleteBridgeCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
146
246
  export declare const se_DeleteFlowCommand: (
147
247
  input: DeleteFlowCommandInput,
148
248
  context: __SerdeContext
149
249
  ) => Promise<__HttpRequest>;
250
+ export declare const se_DeleteGatewayCommand: (
251
+ input: DeleteGatewayCommandInput,
252
+ context: __SerdeContext
253
+ ) => Promise<__HttpRequest>;
254
+ export declare const se_DeregisterGatewayInstanceCommand: (
255
+ input: DeregisterGatewayInstanceCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
258
+ export declare const se_DescribeBridgeCommand: (
259
+ input: DescribeBridgeCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
150
262
  export declare const se_DescribeFlowCommand: (
151
263
  input: DescribeFlowCommandInput,
152
264
  context: __SerdeContext
153
265
  ) => Promise<__HttpRequest>;
266
+ export declare const se_DescribeGatewayCommand: (
267
+ input: DescribeGatewayCommandInput,
268
+ context: __SerdeContext
269
+ ) => Promise<__HttpRequest>;
270
+ export declare const se_DescribeGatewayInstanceCommand: (
271
+ input: DescribeGatewayInstanceCommandInput,
272
+ context: __SerdeContext
273
+ ) => Promise<__HttpRequest>;
154
274
  export declare const se_DescribeOfferingCommand: (
155
275
  input: DescribeOfferingCommandInput,
156
276
  context: __SerdeContext
@@ -163,6 +283,10 @@ export declare const se_GrantFlowEntitlementsCommand: (
163
283
  input: GrantFlowEntitlementsCommandInput,
164
284
  context: __SerdeContext
165
285
  ) => Promise<__HttpRequest>;
286
+ export declare const se_ListBridgesCommand: (
287
+ input: ListBridgesCommandInput,
288
+ context: __SerdeContext
289
+ ) => Promise<__HttpRequest>;
166
290
  export declare const se_ListEntitlementsCommand: (
167
291
  input: ListEntitlementsCommandInput,
168
292
  context: __SerdeContext
@@ -171,6 +295,14 @@ export declare const se_ListFlowsCommand: (
171
295
  input: ListFlowsCommandInput,
172
296
  context: __SerdeContext
173
297
  ) => Promise<__HttpRequest>;
298
+ export declare const se_ListGatewayInstancesCommand: (
299
+ input: ListGatewayInstancesCommandInput,
300
+ context: __SerdeContext
301
+ ) => Promise<__HttpRequest>;
302
+ export declare const se_ListGatewaysCommand: (
303
+ input: ListGatewaysCommandInput,
304
+ context: __SerdeContext
305
+ ) => Promise<__HttpRequest>;
174
306
  export declare const se_ListOfferingsCommand: (
175
307
  input: ListOfferingsCommandInput,
176
308
  context: __SerdeContext
@@ -187,6 +319,14 @@ export declare const se_PurchaseOfferingCommand: (
187
319
  input: PurchaseOfferingCommandInput,
188
320
  context: __SerdeContext
189
321
  ) => Promise<__HttpRequest>;
322
+ export declare const se_RemoveBridgeOutputCommand: (
323
+ input: RemoveBridgeOutputCommandInput,
324
+ context: __SerdeContext
325
+ ) => Promise<__HttpRequest>;
326
+ export declare const se_RemoveBridgeSourceCommand: (
327
+ input: RemoveBridgeSourceCommandInput,
328
+ context: __SerdeContext
329
+ ) => Promise<__HttpRequest>;
190
330
  export declare const se_RemoveFlowMediaStreamCommand: (
191
331
  input: RemoveFlowMediaStreamCommandInput,
192
332
  context: __SerdeContext
@@ -223,6 +363,22 @@ export declare const se_UntagResourceCommand: (
223
363
  input: UntagResourceCommandInput,
224
364
  context: __SerdeContext
225
365
  ) => Promise<__HttpRequest>;
366
+ export declare const se_UpdateBridgeCommand: (
367
+ input: UpdateBridgeCommandInput,
368
+ context: __SerdeContext
369
+ ) => Promise<__HttpRequest>;
370
+ export declare const se_UpdateBridgeOutputCommand: (
371
+ input: UpdateBridgeOutputCommandInput,
372
+ context: __SerdeContext
373
+ ) => Promise<__HttpRequest>;
374
+ export declare const se_UpdateBridgeSourceCommand: (
375
+ input: UpdateBridgeSourceCommandInput,
376
+ context: __SerdeContext
377
+ ) => Promise<__HttpRequest>;
378
+ export declare const se_UpdateBridgeStateCommand: (
379
+ input: UpdateBridgeStateCommandInput,
380
+ context: __SerdeContext
381
+ ) => Promise<__HttpRequest>;
226
382
  export declare const se_UpdateFlowCommand: (
227
383
  input: UpdateFlowCommandInput,
228
384
  context: __SerdeContext
@@ -243,6 +399,18 @@ export declare const se_UpdateFlowSourceCommand: (
243
399
  input: UpdateFlowSourceCommandInput,
244
400
  context: __SerdeContext
245
401
  ) => Promise<__HttpRequest>;
402
+ export declare const se_UpdateGatewayInstanceCommand: (
403
+ input: UpdateGatewayInstanceCommandInput,
404
+ context: __SerdeContext
405
+ ) => Promise<__HttpRequest>;
406
+ export declare const de_AddBridgeOutputsCommand: (
407
+ output: __HttpResponse,
408
+ context: __SerdeContext
409
+ ) => Promise<AddBridgeOutputsCommandOutput>;
410
+ export declare const de_AddBridgeSourcesCommand: (
411
+ output: __HttpResponse,
412
+ context: __SerdeContext
413
+ ) => Promise<AddBridgeSourcesCommandOutput>;
246
414
  export declare const de_AddFlowMediaStreamsCommand: (
247
415
  output: __HttpResponse,
248
416
  context: __SerdeContext
@@ -259,18 +427,50 @@ export declare const de_AddFlowVpcInterfacesCommand: (
259
427
  output: __HttpResponse,
260
428
  context: __SerdeContext
261
429
  ) => Promise<AddFlowVpcInterfacesCommandOutput>;
430
+ export declare const de_CreateBridgeCommand: (
431
+ output: __HttpResponse,
432
+ context: __SerdeContext
433
+ ) => Promise<CreateBridgeCommandOutput>;
262
434
  export declare const de_CreateFlowCommand: (
263
435
  output: __HttpResponse,
264
436
  context: __SerdeContext
265
437
  ) => Promise<CreateFlowCommandOutput>;
438
+ export declare const de_CreateGatewayCommand: (
439
+ output: __HttpResponse,
440
+ context: __SerdeContext
441
+ ) => Promise<CreateGatewayCommandOutput>;
442
+ export declare const de_DeleteBridgeCommand: (
443
+ output: __HttpResponse,
444
+ context: __SerdeContext
445
+ ) => Promise<DeleteBridgeCommandOutput>;
266
446
  export declare const de_DeleteFlowCommand: (
267
447
  output: __HttpResponse,
268
448
  context: __SerdeContext
269
449
  ) => Promise<DeleteFlowCommandOutput>;
450
+ export declare const de_DeleteGatewayCommand: (
451
+ output: __HttpResponse,
452
+ context: __SerdeContext
453
+ ) => Promise<DeleteGatewayCommandOutput>;
454
+ export declare const de_DeregisterGatewayInstanceCommand: (
455
+ output: __HttpResponse,
456
+ context: __SerdeContext
457
+ ) => Promise<DeregisterGatewayInstanceCommandOutput>;
458
+ export declare const de_DescribeBridgeCommand: (
459
+ output: __HttpResponse,
460
+ context: __SerdeContext
461
+ ) => Promise<DescribeBridgeCommandOutput>;
270
462
  export declare const de_DescribeFlowCommand: (
271
463
  output: __HttpResponse,
272
464
  context: __SerdeContext
273
465
  ) => Promise<DescribeFlowCommandOutput>;
466
+ export declare const de_DescribeGatewayCommand: (
467
+ output: __HttpResponse,
468
+ context: __SerdeContext
469
+ ) => Promise<DescribeGatewayCommandOutput>;
470
+ export declare const de_DescribeGatewayInstanceCommand: (
471
+ output: __HttpResponse,
472
+ context: __SerdeContext
473
+ ) => Promise<DescribeGatewayInstanceCommandOutput>;
274
474
  export declare const de_DescribeOfferingCommand: (
275
475
  output: __HttpResponse,
276
476
  context: __SerdeContext
@@ -283,6 +483,10 @@ export declare const de_GrantFlowEntitlementsCommand: (
283
483
  output: __HttpResponse,
284
484
  context: __SerdeContext
285
485
  ) => Promise<GrantFlowEntitlementsCommandOutput>;
486
+ export declare const de_ListBridgesCommand: (
487
+ output: __HttpResponse,
488
+ context: __SerdeContext
489
+ ) => Promise<ListBridgesCommandOutput>;
286
490
  export declare const de_ListEntitlementsCommand: (
287
491
  output: __HttpResponse,
288
492
  context: __SerdeContext
@@ -291,6 +495,14 @@ export declare const de_ListFlowsCommand: (
291
495
  output: __HttpResponse,
292
496
  context: __SerdeContext
293
497
  ) => Promise<ListFlowsCommandOutput>;
498
+ export declare const de_ListGatewayInstancesCommand: (
499
+ output: __HttpResponse,
500
+ context: __SerdeContext
501
+ ) => Promise<ListGatewayInstancesCommandOutput>;
502
+ export declare const de_ListGatewaysCommand: (
503
+ output: __HttpResponse,
504
+ context: __SerdeContext
505
+ ) => Promise<ListGatewaysCommandOutput>;
294
506
  export declare const de_ListOfferingsCommand: (
295
507
  output: __HttpResponse,
296
508
  context: __SerdeContext
@@ -307,6 +519,14 @@ export declare const de_PurchaseOfferingCommand: (
307
519
  output: __HttpResponse,
308
520
  context: __SerdeContext
309
521
  ) => Promise<PurchaseOfferingCommandOutput>;
522
+ export declare const de_RemoveBridgeOutputCommand: (
523
+ output: __HttpResponse,
524
+ context: __SerdeContext
525
+ ) => Promise<RemoveBridgeOutputCommandOutput>;
526
+ export declare const de_RemoveBridgeSourceCommand: (
527
+ output: __HttpResponse,
528
+ context: __SerdeContext
529
+ ) => Promise<RemoveBridgeSourceCommandOutput>;
310
530
  export declare const de_RemoveFlowMediaStreamCommand: (
311
531
  output: __HttpResponse,
312
532
  context: __SerdeContext
@@ -343,6 +563,22 @@ export declare const de_UntagResourceCommand: (
343
563
  output: __HttpResponse,
344
564
  context: __SerdeContext
345
565
  ) => Promise<UntagResourceCommandOutput>;
566
+ export declare const de_UpdateBridgeCommand: (
567
+ output: __HttpResponse,
568
+ context: __SerdeContext
569
+ ) => Promise<UpdateBridgeCommandOutput>;
570
+ export declare const de_UpdateBridgeOutputCommand: (
571
+ output: __HttpResponse,
572
+ context: __SerdeContext
573
+ ) => Promise<UpdateBridgeOutputCommandOutput>;
574
+ export declare const de_UpdateBridgeSourceCommand: (
575
+ output: __HttpResponse,
576
+ context: __SerdeContext
577
+ ) => Promise<UpdateBridgeSourceCommandOutput>;
578
+ export declare const de_UpdateBridgeStateCommand: (
579
+ output: __HttpResponse,
580
+ context: __SerdeContext
581
+ ) => Promise<UpdateBridgeStateCommandOutput>;
346
582
  export declare const de_UpdateFlowCommand: (
347
583
  output: __HttpResponse,
348
584
  context: __SerdeContext
@@ -363,3 +599,7 @@ export declare const de_UpdateFlowSourceCommand: (
363
599
  output: __HttpResponse,
364
600
  context: __SerdeContext
365
601
  ) => Promise<UpdateFlowSourceCommandOutput>;
602
+ export declare const de_UpdateGatewayInstanceCommand: (
603
+ output: __HttpResponse,
604
+ context: __SerdeContext
605
+ ) => Promise<UpdateGatewayInstanceCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediaconnect",
3
3
  "description": "AWS SDK for JavaScript Mediaconnect Client for Node.js, Browser and React Native",
4
- "version": "3.312.0",
4
+ "version": "3.315.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.312.0",
24
+ "@aws-sdk/client-sts": "3.315.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.310.0",
26
+ "@aws-sdk/credential-provider-node": "3.315.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -40,14 +40,14 @@
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.310.0",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.310.0",
43
+ "@aws-sdk/smithy-client": "3.315.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.310.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.310.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.315.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.315.0",
51
51
  "@aws-sdk/util-endpoints": "3.310.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",