@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.
- package/README.md +167 -7
- package/dist-cjs/MediaConnect.js +300 -0
- package/dist-cjs/commands/AddBridgeOutputsCommand.js +45 -0
- package/dist-cjs/commands/AddBridgeSourcesCommand.js +45 -0
- package/dist-cjs/commands/CreateBridgeCommand.js +45 -0
- package/dist-cjs/commands/CreateGatewayCommand.js +45 -0
- package/dist-cjs/commands/DeleteBridgeCommand.js +45 -0
- package/dist-cjs/commands/DeleteGatewayCommand.js +45 -0
- package/dist-cjs/commands/DeregisterGatewayInstanceCommand.js +45 -0
- package/dist-cjs/commands/DescribeBridgeCommand.js +45 -0
- package/dist-cjs/commands/DescribeGatewayCommand.js +45 -0
- package/dist-cjs/commands/DescribeGatewayInstanceCommand.js +45 -0
- package/dist-cjs/commands/ListBridgesCommand.js +45 -0
- package/dist-cjs/commands/ListGatewayInstancesCommand.js +45 -0
- package/dist-cjs/commands/ListGatewaysCommand.js +45 -0
- package/dist-cjs/commands/RemoveBridgeOutputCommand.js +45 -0
- package/dist-cjs/commands/RemoveBridgeSourceCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeOutputCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeSourceCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeStateCommand.js +45 -0
- package/dist-cjs/commands/UpdateGatewayInstanceCommand.js +45 -0
- package/dist-cjs/commands/index.js +20 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +106 -20
- package/dist-cjs/pagination/ListBridgesPaginator.js +29 -0
- package/dist-cjs/pagination/ListGatewayInstancesPaginator.js +29 -0
- package/dist-cjs/pagination/ListGatewaysPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2045 -140
- package/dist-es/MediaConnect.js +300 -0
- package/dist-es/commands/AddBridgeOutputsCommand.js +41 -0
- package/dist-es/commands/AddBridgeSourcesCommand.js +41 -0
- package/dist-es/commands/CreateBridgeCommand.js +41 -0
- package/dist-es/commands/CreateGatewayCommand.js +41 -0
- package/dist-es/commands/DeleteBridgeCommand.js +41 -0
- package/dist-es/commands/DeleteGatewayCommand.js +41 -0
- package/dist-es/commands/DeregisterGatewayInstanceCommand.js +41 -0
- package/dist-es/commands/DescribeBridgeCommand.js +41 -0
- package/dist-es/commands/DescribeGatewayCommand.js +41 -0
- package/dist-es/commands/DescribeGatewayInstanceCommand.js +41 -0
- package/dist-es/commands/ListBridgesCommand.js +41 -0
- package/dist-es/commands/ListGatewayInstancesCommand.js +41 -0
- package/dist-es/commands/ListGatewaysCommand.js +41 -0
- package/dist-es/commands/RemoveBridgeOutputCommand.js +41 -0
- package/dist-es/commands/RemoveBridgeSourceCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeOutputCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeSourceCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeStateCommand.js +41 -0
- package/dist-es/commands/UpdateGatewayInstanceCommand.js +41 -0
- package/dist-es/commands/index.js +20 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +102 -19
- package/dist-es/pagination/ListBridgesPaginator.js +25 -0
- package/dist-es/pagination/ListGatewayInstancesPaginator.js +25 -0
- package/dist-es/pagination/ListGatewaysPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +2002 -137
- package/dist-types/MediaConnect.d.ts +160 -0
- package/dist-types/MediaConnectClient.d.ts +22 -2
- package/dist-types/commands/AddBridgeOutputsCommand.d.ts +96 -0
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +102 -0
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +1 -1
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +7 -1
- package/dist-types/commands/CreateBridgeCommand.d.ts +130 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +15 -3
- package/dist-types/commands/CreateGatewayCommand.d.ts +93 -0
- package/dist-types/commands/DeleteBridgeCommand.d.ts +84 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +84 -0
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +85 -0
- package/dist-types/commands/DescribeBridgeCommand.d.ts +84 -0
- package/dist-types/commands/DescribeGatewayCommand.d.ts +84 -0
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +84 -0
- package/dist-types/commands/ListBridgesCommand.d.ts +80 -0
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +80 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +79 -0
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +85 -0
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +85 -0
- package/dist-types/commands/UpdateBridgeCommand.d.ts +99 -0
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +92 -0
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +97 -0
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +85 -0
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +7 -1
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +85 -0
- package/dist-types/commands/index.d.ts +20 -0
- package/dist-types/models/models_0.d.ts +1340 -85
- package/dist-types/pagination/ListBridgesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +180 -0
- package/dist-types/ts3.4/MediaConnect.d.ts +340 -0
- package/dist-types/ts3.4/MediaConnectClient.d.ts +122 -2
- package/dist-types/ts3.4/commands/AddBridgeOutputsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/AddBridgeSourcesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateBridgeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteBridgeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeregisterGatewayInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeBridgeCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeGatewayCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeGatewayInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListBridgesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListGatewayInstancesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/RemoveBridgeOutputCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RemoveBridgeSourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateBridgeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateBridgeOutputCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateBridgeSourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateBridgeStateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateGatewayInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +20 -0
- package/dist-types/ts3.4/models/models_0.d.ts +442 -33
- package/dist-types/ts3.4/pagination/ListBridgesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +240 -0
- package/package.json +1 -1
|
@@ -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.
|
|
4
|
+
"version": "3.313.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",
|