@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
@@ -1,20 +1,35 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand";
3
+ import { AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput } from "./commands/AddBridgeSourcesCommand";
2
4
  import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
3
5
  import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
4
6
  import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
5
7
  import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
8
+ import { CreateBridgeCommandInput, CreateBridgeCommandOutput } from "./commands/CreateBridgeCommand";
6
9
  import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
10
+ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
11
+ import { DeleteBridgeCommandInput, DeleteBridgeCommandOutput } from "./commands/DeleteBridgeCommand";
7
12
  import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
13
+ import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
14
+ import { DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput } from "./commands/DeregisterGatewayInstanceCommand";
15
+ import { DescribeBridgeCommandInput, DescribeBridgeCommandOutput } from "./commands/DescribeBridgeCommand";
8
16
  import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
17
+ import { DescribeGatewayCommandInput, DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
18
+ import { DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput } from "./commands/DescribeGatewayInstanceCommand";
9
19
  import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
10
20
  import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
11
21
  import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
22
+ import { ListBridgesCommandInput, ListBridgesCommandOutput } from "./commands/ListBridgesCommand";
12
23
  import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
13
24
  import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
25
+ import { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "./commands/ListGatewayInstancesCommand";
26
+ import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
14
27
  import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
15
28
  import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
16
29
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
17
30
  import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
31
+ import { RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput } from "./commands/RemoveBridgeOutputCommand";
32
+ import { RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput } from "./commands/RemoveBridgeSourceCommand";
18
33
  import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
19
34
  import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
20
35
  import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
@@ -24,17 +39,36 @@ import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartF
24
39
  import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
25
40
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
26
41
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
42
+ import { UpdateBridgeCommandInput, UpdateBridgeCommandOutput } from "./commands/UpdateBridgeCommand";
43
+ import { UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput } from "./commands/UpdateBridgeOutputCommand";
44
+ import { UpdateBridgeSourceCommandInput, UpdateBridgeSourceCommandOutput } from "./commands/UpdateBridgeSourceCommand";
45
+ import { UpdateBridgeStateCommandInput, UpdateBridgeStateCommandOutput } from "./commands/UpdateBridgeStateCommand";
27
46
  import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
28
47
  import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
29
48
  import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
30
49
  import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
31
50
  import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
51
+ import { UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput } from "./commands/UpdateGatewayInstanceCommand";
32
52
  import { MediaConnectClient } from "./MediaConnectClient";
33
53
  /**
34
54
  * @public
35
55
  * API for AWS Elemental MediaConnect
36
56
  */
37
57
  export declare class MediaConnect extends MediaConnectClient {
58
+ /**
59
+ * @public
60
+ * Adds outputs to an existing bridge.
61
+ */
62
+ addBridgeOutputs(args: AddBridgeOutputsCommandInput, options?: __HttpHandlerOptions): Promise<AddBridgeOutputsCommandOutput>;
63
+ addBridgeOutputs(args: AddBridgeOutputsCommandInput, cb: (err: any, data?: AddBridgeOutputsCommandOutput) => void): void;
64
+ addBridgeOutputs(args: AddBridgeOutputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddBridgeOutputsCommandOutput) => void): void;
65
+ /**
66
+ * @public
67
+ * Adds sources to an existing bridge.
68
+ */
69
+ addBridgeSources(args: AddBridgeSourcesCommandInput, options?: __HttpHandlerOptions): Promise<AddBridgeSourcesCommandOutput>;
70
+ addBridgeSources(args: AddBridgeSourcesCommandInput, cb: (err: any, data?: AddBridgeSourcesCommandOutput) => void): void;
71
+ addBridgeSources(args: AddBridgeSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddBridgeSourcesCommandOutput) => void): void;
38
72
  /**
39
73
  * @public
40
74
  * Adds media streams to an existing flow. After you add a media stream to a flow, you can associate it with a source and/or an output that uses the ST 2110 JPEG XS or CDI protocol.
@@ -63,6 +97,13 @@ export declare class MediaConnect extends MediaConnectClient {
63
97
  addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowVpcInterfacesCommandOutput>;
64
98
  addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
65
99
  addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
100
+ /**
101
+ * @public
102
+ * Creates a new bridge. The request must include one source.
103
+ */
104
+ createBridge(args: CreateBridgeCommandInput, options?: __HttpHandlerOptions): Promise<CreateBridgeCommandOutput>;
105
+ createBridge(args: CreateBridgeCommandInput, cb: (err: any, data?: CreateBridgeCommandOutput) => void): void;
106
+ createBridge(args: CreateBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBridgeCommandOutput) => void): void;
66
107
  /**
67
108
  * @public
68
109
  * Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
@@ -70,6 +111,20 @@ export declare class MediaConnect extends MediaConnectClient {
70
111
  createFlow(args: CreateFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowCommandOutput>;
71
112
  createFlow(args: CreateFlowCommandInput, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
72
113
  createFlow(args: CreateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
114
+ /**
115
+ * @public
116
+ * Creates a new gateway. The request must include at least one network (up to 4).
117
+ */
118
+ createGateway(args: CreateGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateGatewayCommandOutput>;
119
+ createGateway(args: CreateGatewayCommandInput, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
120
+ createGateway(args: CreateGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
121
+ /**
122
+ * @public
123
+ * Deletes a bridge. Before you can delete a bridge, you must stop the bridge.
124
+ */
125
+ deleteBridge(args: DeleteBridgeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBridgeCommandOutput>;
126
+ deleteBridge(args: DeleteBridgeCommandInput, cb: (err: any, data?: DeleteBridgeCommandOutput) => void): void;
127
+ deleteBridge(args: DeleteBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBridgeCommandOutput) => void): void;
73
128
  /**
74
129
  * @public
75
130
  * Deletes a flow. Before you can delete a flow, you must stop the flow.
@@ -77,6 +132,27 @@ export declare class MediaConnect extends MediaConnectClient {
77
132
  deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
78
133
  deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
79
134
  deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
135
+ /**
136
+ * @public
137
+ * Deletes a gateway. Before you can delete a gateway, you must deregister its instances and delete its bridges.
138
+ */
139
+ deleteGateway(args: DeleteGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayCommandOutput>;
140
+ deleteGateway(args: DeleteGatewayCommandInput, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
141
+ deleteGateway(args: DeleteGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
142
+ /**
143
+ * @public
144
+ * Deregisters an instance. Before you deregister an instance, all bridges running on the instance must be stopped. If you want to deregister an instance without stopping the bridges, you must use the --force option.
145
+ */
146
+ deregisterGatewayInstance(args: DeregisterGatewayInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterGatewayInstanceCommandOutput>;
147
+ deregisterGatewayInstance(args: DeregisterGatewayInstanceCommandInput, cb: (err: any, data?: DeregisterGatewayInstanceCommandOutput) => void): void;
148
+ deregisterGatewayInstance(args: DeregisterGatewayInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterGatewayInstanceCommandOutput) => void): void;
149
+ /**
150
+ * @public
151
+ * Displays the details of a bridge.
152
+ */
153
+ describeBridge(args: DescribeBridgeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBridgeCommandOutput>;
154
+ describeBridge(args: DescribeBridgeCommandInput, cb: (err: any, data?: DescribeBridgeCommandOutput) => void): void;
155
+ describeBridge(args: DescribeBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBridgeCommandOutput) => void): void;
80
156
  /**
81
157
  * @public
82
158
  * Displays the details of a flow. The response includes the flow ARN, name, and Availability Zone, as well as details about the source, outputs, and entitlements.
@@ -84,6 +160,20 @@ export declare class MediaConnect extends MediaConnectClient {
84
160
  describeFlow(args: DescribeFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowCommandOutput>;
85
161
  describeFlow(args: DescribeFlowCommandInput, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
86
162
  describeFlow(args: DescribeFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
163
+ /**
164
+ * @public
165
+ * Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
166
+ */
167
+ describeGateway(args: DescribeGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGatewayCommandOutput>;
168
+ describeGateway(args: DescribeGatewayCommandInput, cb: (err: any, data?: DescribeGatewayCommandOutput) => void): void;
169
+ describeGateway(args: DescribeGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGatewayCommandOutput) => void): void;
170
+ /**
171
+ * @public
172
+ * Displays the details of an instance.
173
+ */
174
+ describeGatewayInstance(args: DescribeGatewayInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGatewayInstanceCommandOutput>;
175
+ describeGatewayInstance(args: DescribeGatewayInstanceCommandInput, cb: (err: any, data?: DescribeGatewayInstanceCommandOutput) => void): void;
176
+ describeGatewayInstance(args: DescribeGatewayInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGatewayInstanceCommandOutput) => void): void;
87
177
  /**
88
178
  * @public
89
179
  * Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
@@ -105,6 +195,13 @@ export declare class MediaConnect extends MediaConnectClient {
105
195
  grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<GrantFlowEntitlementsCommandOutput>;
106
196
  grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
107
197
  grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
198
+ /**
199
+ * @public
200
+ * Displays a list of bridges that are associated with this account and an optionally specified Arn. This request returns a paginated result.
201
+ */
202
+ listBridges(args: ListBridgesCommandInput, options?: __HttpHandlerOptions): Promise<ListBridgesCommandOutput>;
203
+ listBridges(args: ListBridgesCommandInput, cb: (err: any, data?: ListBridgesCommandOutput) => void): void;
204
+ listBridges(args: ListBridgesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBridgesCommandOutput) => void): void;
108
205
  /**
109
206
  * @public
110
207
  * Displays a list of all entitlements that have been granted to this account. This request returns 20 results per page.
@@ -119,6 +216,20 @@ export declare class MediaConnect extends MediaConnectClient {
119
216
  listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
120
217
  listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
121
218
  listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
219
+ /**
220
+ * @public
221
+ * Displays a list of instances associated with the AWS account. This request returns a paginated result. You can use the filterArn property to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).
222
+ */
223
+ listGatewayInstances(args: ListGatewayInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListGatewayInstancesCommandOutput>;
224
+ listGatewayInstances(args: ListGatewayInstancesCommandInput, cb: (err: any, data?: ListGatewayInstancesCommandOutput) => void): void;
225
+ listGatewayInstances(args: ListGatewayInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGatewayInstancesCommandOutput) => void): void;
226
+ /**
227
+ * @public
228
+ * Displays a list of gateways that are associated with this account. This request returns a paginated result.
229
+ */
230
+ listGateways(args: ListGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<ListGatewaysCommandOutput>;
231
+ listGateways(args: ListGatewaysCommandInput, cb: (err: any, data?: ListGatewaysCommandOutput) => void): void;
232
+ listGateways(args: ListGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGatewaysCommandOutput) => void): void;
122
233
  /**
123
234
  * @public
124
235
  * Displays a list of all offerings that are available to this account in the current AWS Region. If you have an active reservation (which means you've purchased an offering that has already started and hasn't expired yet), your account isn't eligible for other offerings.
@@ -147,6 +258,20 @@ export declare class MediaConnect extends MediaConnectClient {
147
258
  purchaseOffering(args: PurchaseOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseOfferingCommandOutput>;
148
259
  purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
149
260
  purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
261
+ /**
262
+ * @public
263
+ * Removes an output from a bridge.
264
+ */
265
+ removeBridgeOutput(args: RemoveBridgeOutputCommandInput, options?: __HttpHandlerOptions): Promise<RemoveBridgeOutputCommandOutput>;
266
+ removeBridgeOutput(args: RemoveBridgeOutputCommandInput, cb: (err: any, data?: RemoveBridgeOutputCommandOutput) => void): void;
267
+ removeBridgeOutput(args: RemoveBridgeOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveBridgeOutputCommandOutput) => void): void;
268
+ /**
269
+ * @public
270
+ * Removes a source from a bridge.
271
+ */
272
+ removeBridgeSource(args: RemoveBridgeSourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveBridgeSourceCommandOutput>;
273
+ removeBridgeSource(args: RemoveBridgeSourceCommandInput, cb: (err: any, data?: RemoveBridgeSourceCommandOutput) => void): void;
274
+ removeBridgeSource(args: RemoveBridgeSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveBridgeSourceCommandOutput) => void): void;
150
275
  /**
151
276
  * @public
152
277
  * Removes a media stream from a flow. This action is only available if the media stream is not associated with a source or output.
@@ -210,6 +335,34 @@ export declare class MediaConnect extends MediaConnectClient {
210
335
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
211
336
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
212
337
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
338
+ /**
339
+ * @public
340
+ * Updates the bridge
341
+ */
342
+ updateBridge(args: UpdateBridgeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeCommandOutput>;
343
+ updateBridge(args: UpdateBridgeCommandInput, cb: (err: any, data?: UpdateBridgeCommandOutput) => void): void;
344
+ updateBridge(args: UpdateBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeCommandOutput) => void): void;
345
+ /**
346
+ * @public
347
+ * Updates an existing bridge output.
348
+ */
349
+ updateBridgeOutput(args: UpdateBridgeOutputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeOutputCommandOutput>;
350
+ updateBridgeOutput(args: UpdateBridgeOutputCommandInput, cb: (err: any, data?: UpdateBridgeOutputCommandOutput) => void): void;
351
+ updateBridgeOutput(args: UpdateBridgeOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeOutputCommandOutput) => void): void;
352
+ /**
353
+ * @public
354
+ * Updates an existing bridge source.
355
+ */
356
+ updateBridgeSource(args: UpdateBridgeSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeSourceCommandOutput>;
357
+ updateBridgeSource(args: UpdateBridgeSourceCommandInput, cb: (err: any, data?: UpdateBridgeSourceCommandOutput) => void): void;
358
+ updateBridgeSource(args: UpdateBridgeSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeSourceCommandOutput) => void): void;
359
+ /**
360
+ * @public
361
+ * Updates the bridge state
362
+ */
363
+ updateBridgeState(args: UpdateBridgeStateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeStateCommandOutput>;
364
+ updateBridgeState(args: UpdateBridgeStateCommandInput, cb: (err: any, data?: UpdateBridgeStateCommandOutput) => void): void;
365
+ updateBridgeState(args: UpdateBridgeStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeStateCommandOutput) => void): void;
213
366
  /**
214
367
  * @public
215
368
  * Updates flow
@@ -245,4 +398,11 @@ export declare class MediaConnect extends MediaConnectClient {
245
398
  updateFlowSource(args: UpdateFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowSourceCommandOutput>;
246
399
  updateFlowSource(args: UpdateFlowSourceCommandInput, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
247
400
  updateFlowSource(args: UpdateFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
401
+ /**
402
+ * @public
403
+ * Updates the configuration of an existing Gateway Instance.
404
+ */
405
+ updateGatewayInstance(args: UpdateGatewayInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayInstanceCommandOutput>;
406
+ updateGatewayInstance(args: UpdateGatewayInstanceCommandInput, cb: (err: any, data?: UpdateGatewayInstanceCommandOutput) => void): void;
407
+ updateGatewayInstance(args: UpdateGatewayInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayInstanceCommandOutput) => void): void;
248
408
  }
@@ -7,22 +7,37 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
8
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
9
  import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
+ import { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand";
11
+ import { AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput } from "./commands/AddBridgeSourcesCommand";
10
12
  import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
11
13
  import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
12
14
  import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
13
15
  import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
16
+ import { CreateBridgeCommandInput, CreateBridgeCommandOutput } from "./commands/CreateBridgeCommand";
14
17
  import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
18
+ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
19
+ import { DeleteBridgeCommandInput, DeleteBridgeCommandOutput } from "./commands/DeleteBridgeCommand";
15
20
  import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
21
+ import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
22
+ import { DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput } from "./commands/DeregisterGatewayInstanceCommand";
23
+ import { DescribeBridgeCommandInput, DescribeBridgeCommandOutput } from "./commands/DescribeBridgeCommand";
16
24
  import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
25
+ import { DescribeGatewayCommandInput, DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
26
+ import { DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput } from "./commands/DescribeGatewayInstanceCommand";
17
27
  import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
18
28
  import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
19
29
  import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
30
+ import { ListBridgesCommandInput, ListBridgesCommandOutput } from "./commands/ListBridgesCommand";
20
31
  import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
21
32
  import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
33
+ import { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "./commands/ListGatewayInstancesCommand";
34
+ import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
22
35
  import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
23
36
  import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
24
37
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
25
38
  import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
39
+ import { RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput } from "./commands/RemoveBridgeOutputCommand";
40
+ import { RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput } from "./commands/RemoveBridgeSourceCommand";
26
41
  import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
27
42
  import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
28
43
  import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
@@ -32,20 +47,25 @@ import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartF
32
47
  import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
33
48
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
34
49
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
50
+ import { UpdateBridgeCommandInput, UpdateBridgeCommandOutput } from "./commands/UpdateBridgeCommand";
51
+ import { UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput } from "./commands/UpdateBridgeOutputCommand";
52
+ import { UpdateBridgeSourceCommandInput, UpdateBridgeSourceCommandOutput } from "./commands/UpdateBridgeSourceCommand";
53
+ import { UpdateBridgeStateCommandInput, UpdateBridgeStateCommandOutput } from "./commands/UpdateBridgeStateCommand";
35
54
  import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
36
55
  import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
37
56
  import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
38
57
  import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
39
58
  import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
59
+ import { UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput } from "./commands/UpdateGatewayInstanceCommand";
40
60
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
41
61
  /**
42
62
  * @public
43
63
  */
44
- export type ServiceInputTypes = AddFlowMediaStreamsCommandInput | AddFlowOutputsCommandInput | AddFlowSourcesCommandInput | AddFlowVpcInterfacesCommandInput | CreateFlowCommandInput | DeleteFlowCommandInput | DescribeFlowCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | GrantFlowEntitlementsCommandInput | ListEntitlementsCommandInput | ListFlowsCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListTagsForResourceCommandInput | PurchaseOfferingCommandInput | RemoveFlowMediaStreamCommandInput | RemoveFlowOutputCommandInput | RemoveFlowSourceCommandInput | RemoveFlowVpcInterfaceCommandInput | RevokeFlowEntitlementCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFlowCommandInput | UpdateFlowEntitlementCommandInput | UpdateFlowMediaStreamCommandInput | UpdateFlowOutputCommandInput | UpdateFlowSourceCommandInput;
64
+ export type ServiceInputTypes = AddBridgeOutputsCommandInput | AddBridgeSourcesCommandInput | AddFlowMediaStreamsCommandInput | AddFlowOutputsCommandInput | AddFlowSourcesCommandInput | AddFlowVpcInterfacesCommandInput | CreateBridgeCommandInput | CreateFlowCommandInput | CreateGatewayCommandInput | DeleteBridgeCommandInput | DeleteFlowCommandInput | DeleteGatewayCommandInput | DeregisterGatewayInstanceCommandInput | DescribeBridgeCommandInput | DescribeFlowCommandInput | DescribeGatewayCommandInput | DescribeGatewayInstanceCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | GrantFlowEntitlementsCommandInput | ListBridgesCommandInput | ListEntitlementsCommandInput | ListFlowsCommandInput | ListGatewayInstancesCommandInput | ListGatewaysCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListTagsForResourceCommandInput | PurchaseOfferingCommandInput | RemoveBridgeOutputCommandInput | RemoveBridgeSourceCommandInput | RemoveFlowMediaStreamCommandInput | RemoveFlowOutputCommandInput | RemoveFlowSourceCommandInput | RemoveFlowVpcInterfaceCommandInput | RevokeFlowEntitlementCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBridgeCommandInput | UpdateBridgeOutputCommandInput | UpdateBridgeSourceCommandInput | UpdateBridgeStateCommandInput | UpdateFlowCommandInput | UpdateFlowEntitlementCommandInput | UpdateFlowMediaStreamCommandInput | UpdateFlowOutputCommandInput | UpdateFlowSourceCommandInput | UpdateGatewayInstanceCommandInput;
45
65
  /**
46
66
  * @public
47
67
  */
48
- export type ServiceOutputTypes = AddFlowMediaStreamsCommandOutput | AddFlowOutputsCommandOutput | AddFlowSourcesCommandOutput | AddFlowVpcInterfacesCommandOutput | CreateFlowCommandOutput | DeleteFlowCommandOutput | DescribeFlowCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | GrantFlowEntitlementsCommandOutput | ListEntitlementsCommandOutput | ListFlowsCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListTagsForResourceCommandOutput | PurchaseOfferingCommandOutput | RemoveFlowMediaStreamCommandOutput | RemoveFlowOutputCommandOutput | RemoveFlowSourceCommandOutput | RemoveFlowVpcInterfaceCommandOutput | RevokeFlowEntitlementCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFlowCommandOutput | UpdateFlowEntitlementCommandOutput | UpdateFlowMediaStreamCommandOutput | UpdateFlowOutputCommandOutput | UpdateFlowSourceCommandOutput;
68
+ export type ServiceOutputTypes = AddBridgeOutputsCommandOutput | AddBridgeSourcesCommandOutput | AddFlowMediaStreamsCommandOutput | AddFlowOutputsCommandOutput | AddFlowSourcesCommandOutput | AddFlowVpcInterfacesCommandOutput | CreateBridgeCommandOutput | CreateFlowCommandOutput | CreateGatewayCommandOutput | DeleteBridgeCommandOutput | DeleteFlowCommandOutput | DeleteGatewayCommandOutput | DeregisterGatewayInstanceCommandOutput | DescribeBridgeCommandOutput | DescribeFlowCommandOutput | DescribeGatewayCommandOutput | DescribeGatewayInstanceCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | GrantFlowEntitlementsCommandOutput | ListBridgesCommandOutput | ListEntitlementsCommandOutput | ListFlowsCommandOutput | ListGatewayInstancesCommandOutput | ListGatewaysCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListTagsForResourceCommandOutput | PurchaseOfferingCommandOutput | RemoveBridgeOutputCommandOutput | RemoveBridgeSourceCommandOutput | RemoveFlowMediaStreamCommandOutput | RemoveFlowOutputCommandOutput | RemoveFlowSourceCommandOutput | RemoveFlowVpcInterfaceCommandOutput | RevokeFlowEntitlementCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBridgeCommandOutput | UpdateBridgeOutputCommandOutput | UpdateBridgeSourceCommandOutput | UpdateBridgeStateCommandOutput | UpdateFlowCommandOutput | UpdateFlowEntitlementCommandOutput | UpdateFlowMediaStreamCommandOutput | UpdateFlowOutputCommandOutput | UpdateFlowSourceCommandOutput | UpdateGatewayInstanceCommandOutput;
49
69
  /**
50
70
  * @public
51
71
  */
@@ -0,0 +1,96 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { AddBridgeOutputsRequest, AddBridgeOutputsResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link AddBridgeOutputsCommand}.
10
+ */
11
+ export interface AddBridgeOutputsCommandInput extends AddBridgeOutputsRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link AddBridgeOutputsCommand}.
17
+ */
18
+ export interface AddBridgeOutputsCommandOutput extends AddBridgeOutputsResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Adds outputs to an existing bridge.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, AddBridgeOutputsCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, AddBridgeOutputsCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // AddBridgeOutputsRequest
30
+ * BridgeArn: "STRING_VALUE", // required
31
+ * Outputs: [ // __listOfAddBridgeOutputRequest // required
32
+ * { // AddBridgeOutputRequest
33
+ * NetworkOutput: { // AddBridgeNetworkOutputRequest
34
+ * IpAddress: "STRING_VALUE", // required
35
+ * Name: "STRING_VALUE", // required
36
+ * NetworkName: "STRING_VALUE", // required
37
+ * Port: Number("int"), // required
38
+ * Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
39
+ * Ttl: Number("int"), // required
40
+ * },
41
+ * },
42
+ * ],
43
+ * };
44
+ * const command = new AddBridgeOutputsCommand(input);
45
+ * const response = await client.send(command);
46
+ * ```
47
+ *
48
+ * @param AddBridgeOutputsCommandInput - {@link AddBridgeOutputsCommandInput}
49
+ * @returns {@link AddBridgeOutputsCommandOutput}
50
+ * @see {@link AddBridgeOutputsCommandInput} for command's `input` shape.
51
+ * @see {@link AddBridgeOutputsCommandOutput} for command's `response` shape.
52
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
53
+ *
54
+ * @throws {@link BadRequestException} (client fault)
55
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
56
+ *
57
+ * @throws {@link ConflictException} (client fault)
58
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
59
+ *
60
+ * @throws {@link ForbiddenException} (client fault)
61
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
62
+ *
63
+ * @throws {@link InternalServerErrorException} (server fault)
64
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
65
+ *
66
+ * @throws {@link NotFoundException} (client fault)
67
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
68
+ *
69
+ * @throws {@link ServiceUnavailableException} (server fault)
70
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
71
+ *
72
+ * @throws {@link TooManyRequestsException} (client fault)
73
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
74
+ *
75
+ *
76
+ */
77
+ export declare class AddBridgeOutputsCommand extends $Command<AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput, MediaConnectClientResolvedConfig> {
78
+ readonly input: AddBridgeOutputsCommandInput;
79
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
83
+ constructor(input: AddBridgeOutputsCommandInput);
84
+ /**
85
+ * @internal
86
+ */
87
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
91
+ private serialize;
92
+ /**
93
+ * @internal
94
+ */
95
+ private deserialize;
96
+ }
@@ -0,0 +1,102 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { AddBridgeSourcesRequest, AddBridgeSourcesResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link AddBridgeSourcesCommand}.
10
+ */
11
+ export interface AddBridgeSourcesCommandInput extends AddBridgeSourcesRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link AddBridgeSourcesCommand}.
17
+ */
18
+ export interface AddBridgeSourcesCommandOutput extends AddBridgeSourcesResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Adds sources to an existing bridge.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, AddBridgeSourcesCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, AddBridgeSourcesCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // AddBridgeSourcesRequest
30
+ * BridgeArn: "STRING_VALUE", // required
31
+ * Sources: [ // __listOfAddBridgeSourceRequest // required
32
+ * { // AddBridgeSourceRequest
33
+ * FlowSource: { // AddBridgeFlowSourceRequest
34
+ * FlowArn: "STRING_VALUE", // required
35
+ * FlowVpcInterfaceAttachment: { // VpcInterfaceAttachment
36
+ * VpcInterfaceName: "STRING_VALUE",
37
+ * },
38
+ * Name: "STRING_VALUE", // required
39
+ * },
40
+ * NetworkSource: { // AddBridgeNetworkSourceRequest
41
+ * MulticastIp: "STRING_VALUE", // required
42
+ * Name: "STRING_VALUE", // required
43
+ * NetworkName: "STRING_VALUE", // required
44
+ * Port: Number("int"), // required
45
+ * Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
46
+ * },
47
+ * },
48
+ * ],
49
+ * };
50
+ * const command = new AddBridgeSourcesCommand(input);
51
+ * const response = await client.send(command);
52
+ * ```
53
+ *
54
+ * @param AddBridgeSourcesCommandInput - {@link AddBridgeSourcesCommandInput}
55
+ * @returns {@link AddBridgeSourcesCommandOutput}
56
+ * @see {@link AddBridgeSourcesCommandInput} for command's `input` shape.
57
+ * @see {@link AddBridgeSourcesCommandOutput} for command's `response` shape.
58
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
59
+ *
60
+ * @throws {@link BadRequestException} (client fault)
61
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
62
+ *
63
+ * @throws {@link ConflictException} (client fault)
64
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
65
+ *
66
+ * @throws {@link ForbiddenException} (client fault)
67
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
68
+ *
69
+ * @throws {@link InternalServerErrorException} (server fault)
70
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
71
+ *
72
+ * @throws {@link NotFoundException} (client fault)
73
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
74
+ *
75
+ * @throws {@link ServiceUnavailableException} (server fault)
76
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
77
+ *
78
+ * @throws {@link TooManyRequestsException} (client fault)
79
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
80
+ *
81
+ *
82
+ */
83
+ export declare class AddBridgeSourcesCommand extends $Command<AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput, MediaConnectClientResolvedConfig> {
84
+ readonly input: AddBridgeSourcesCommandInput;
85
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
+ /**
87
+ * @public
88
+ */
89
+ constructor(input: AddBridgeSourcesCommandInput);
90
+ /**
91
+ * @internal
92
+ */
93
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput>;
94
+ /**
95
+ * @internal
96
+ */
97
+ private serialize;
98
+ /**
99
+ * @internal
100
+ */
101
+ private deserialize;
102
+ }
@@ -69,7 +69,7 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M
69
69
  * MinLatency: Number("int"),
70
70
  * Name: "STRING_VALUE",
71
71
  * Port: Number("int"),
72
- * Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos", // required
72
+ * Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
73
73
  * RemoteId: "STRING_VALUE",
74
74
  * SenderControlPort: Number("int"),
75
75
  * SmoothingLatency: Number("int"),
@@ -63,7 +63,7 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
63
63
  * ],
64
64
  * MinLatency: Number("int"),
65
65
  * Name: "STRING_VALUE",
66
- * Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
66
+ * Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp",
67
67
  * SenderControlPort: Number("int"),
68
68
  * SenderIpAddress: "STRING_VALUE",
69
69
  * SourceListenerAddress: "STRING_VALUE",
@@ -71,6 +71,12 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
71
71
  * StreamId: "STRING_VALUE",
72
72
  * VpcInterfaceName: "STRING_VALUE",
73
73
  * WhitelistCidr: "STRING_VALUE",
74
+ * GatewayBridgeSource: { // SetGatewayBridgeSourceRequest
75
+ * BridgeArn: "STRING_VALUE", // required
76
+ * VpcInterfaceAttachment: { // VpcInterfaceAttachment
77
+ * VpcInterfaceName: "STRING_VALUE",
78
+ * },
79
+ * },
74
80
  * },
75
81
  * ],
76
82
  * };