@aws-sdk/client-mediaconnect 3.758.0 → 3.771.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 +26 -1
- package/dist-cjs/index.js +96 -68
- package/dist-es/models/models_0.js +26 -13
- package/dist-es/protocols/Aws_restJson1.js +54 -0
- package/dist-es/waiters/waitForFlowActive.js +9 -0
- package/dist-types/MediaConnect.d.ts +26 -1
- package/dist-types/MediaConnectClient.d.ts +26 -1
- package/dist-types/commands/AddBridgeOutputsCommand.d.ts +17 -10
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +17 -10
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +13 -7
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +24 -13
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +18 -10
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +15 -9
- package/dist-types/commands/CreateBridgeCommand.d.ts +19 -12
- package/dist-types/commands/CreateFlowCommand.d.ts +55 -17
- package/dist-types/commands/CreateGatewayCommand.d.ts +17 -10
- package/dist-types/commands/DeleteBridgeCommand.d.ts +15 -8
- package/dist-types/commands/DeleteFlowCommand.d.ts +13 -7
- package/dist-types/commands/DeleteGatewayCommand.d.ts +15 -8
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +15 -8
- package/dist-types/commands/DescribeBridgeCommand.d.ts +17 -10
- package/dist-types/commands/DescribeFlowCommand.d.ts +40 -14
- package/dist-types/commands/DescribeFlowSourceMetadataCommand.d.ts +15 -7
- package/dist-types/commands/DescribeFlowSourceThumbnailCommand.d.ts +15 -7
- package/dist-types/commands/DescribeGatewayCommand.d.ts +17 -9
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +17 -8
- package/dist-types/commands/DescribeOfferingCommand.d.ts +11 -6
- package/dist-types/commands/DescribeReservationCommand.d.ts +11 -6
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +17 -10
- package/dist-types/commands/ListBridgesCommand.d.ts +12 -6
- package/dist-types/commands/ListEntitlementsCommand.d.ts +9 -5
- package/dist-types/commands/ListFlowsCommand.d.ts +9 -5
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +11 -6
- package/dist-types/commands/ListGatewaysCommand.d.ts +11 -6
- package/dist-types/commands/ListOfferingsCommand.d.ts +9 -5
- package/dist-types/commands/ListReservationsCommand.d.ts +9 -5
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -5
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +13 -7
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +15 -8
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +15 -8
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +13 -7
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +13 -7
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +14 -7
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +14 -8
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +13 -7
- package/dist-types/commands/StartFlowCommand.d.ts +13 -7
- package/dist-types/commands/StopFlowCommand.d.ts +13 -7
- package/dist-types/commands/TagResourceCommand.d.ts +11 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateBridgeCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +15 -8
- package/dist-types/commands/UpdateFlowCommand.d.ts +48 -13
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +15 -9
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +13 -7
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +22 -12
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +18 -10
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +16 -8
- package/dist-types/index.d.ts +26 -1
- package/dist-types/models/models_0.d.ts +1955 -1327
- package/dist-types/ts3.4/models/models_0.d.ts +221 -185
- package/package.json +1 -1
|
@@ -27,7 +27,9 @@ declare const DescribeFlowCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays the details of a flow. The response includes the flow
|
|
30
|
+
* <p> Displays the details of a flow. The response includes the flow Amazon Resource Name (ARN),
|
|
31
|
+
* name, and Availability Zone, as well as details about the source, outputs, and
|
|
32
|
+
* entitlements.</p>
|
|
31
33
|
* @example
|
|
32
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
35
|
* ```javascript
|
|
@@ -62,7 +64,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
62
64
|
* // EntitlementArn: "STRING_VALUE", // required
|
|
63
65
|
* // EntitlementStatus: "ENABLED" || "DISABLED",
|
|
64
66
|
* // Name: "STRING_VALUE", // required
|
|
65
|
-
* // Subscribers: [ //
|
|
67
|
+
* // Subscribers: [ // __listOfString // required
|
|
66
68
|
* // "STRING_VALUE",
|
|
67
69
|
* // ],
|
|
68
70
|
* // },
|
|
@@ -142,7 +144,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
142
144
|
* // MaxLatency: Number("int"),
|
|
143
145
|
* // MaxSyncBuffer: Number("int"),
|
|
144
146
|
* // MinLatency: Number("int"),
|
|
145
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
147
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
146
148
|
* // RemoteId: "STRING_VALUE",
|
|
147
149
|
* // SenderControlPort: Number("int"),
|
|
148
150
|
* // SenderIpAddress: "STRING_VALUE",
|
|
@@ -150,12 +152,14 @@ declare const DescribeFlowCommand_base: {
|
|
|
150
152
|
* // SourceListenerAddress: "STRING_VALUE",
|
|
151
153
|
* // SourceListenerPort: Number("int"),
|
|
152
154
|
* // StreamId: "STRING_VALUE",
|
|
155
|
+
* // NdiSpeedHqQuality: Number("int"),
|
|
156
|
+
* // NdiProgramName: "STRING_VALUE",
|
|
153
157
|
* // },
|
|
154
158
|
* // VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
155
159
|
* // VpcInterfaceName: "STRING_VALUE",
|
|
156
160
|
* // },
|
|
157
161
|
* // BridgeArn: "STRING_VALUE",
|
|
158
|
-
* // BridgePorts: [ //
|
|
162
|
+
* // BridgePorts: [ // __listOfInteger
|
|
159
163
|
* // Number("int"),
|
|
160
164
|
* // ],
|
|
161
165
|
* // OutputStatus: "ENABLED" || "DISABLED",
|
|
@@ -205,7 +209,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
205
209
|
* // MaxLatency: Number("int"),
|
|
206
210
|
* // MaxSyncBuffer: Number("int"),
|
|
207
211
|
* // MinLatency: Number("int"),
|
|
208
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
212
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
209
213
|
* // RemoteId: "STRING_VALUE",
|
|
210
214
|
* // SenderControlPort: Number("int"),
|
|
211
215
|
* // SenderIpAddress: "STRING_VALUE",
|
|
@@ -213,6 +217,8 @@ declare const DescribeFlowCommand_base: {
|
|
|
213
217
|
* // SourceListenerAddress: "STRING_VALUE",
|
|
214
218
|
* // SourceListenerPort: Number("int"),
|
|
215
219
|
* // StreamId: "STRING_VALUE",
|
|
220
|
+
* // NdiSpeedHqQuality: Number("int"),
|
|
221
|
+
* // NdiProgramName: "STRING_VALUE",
|
|
216
222
|
* // },
|
|
217
223
|
* // VpcInterfaceName: "STRING_VALUE",
|
|
218
224
|
* // WhitelistCidr: "STRING_VALUE",
|
|
@@ -276,7 +282,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
276
282
|
* // MaxLatency: Number("int"),
|
|
277
283
|
* // MaxSyncBuffer: Number("int"),
|
|
278
284
|
* // MinLatency: Number("int"),
|
|
279
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
285
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
280
286
|
* // RemoteId: "STRING_VALUE",
|
|
281
287
|
* // SenderControlPort: Number("int"),
|
|
282
288
|
* // SenderIpAddress: "STRING_VALUE",
|
|
@@ -284,6 +290,8 @@ declare const DescribeFlowCommand_base: {
|
|
|
284
290
|
* // SourceListenerAddress: "STRING_VALUE",
|
|
285
291
|
* // SourceListenerPort: Number("int"),
|
|
286
292
|
* // StreamId: "STRING_VALUE",
|
|
293
|
+
* // NdiSpeedHqQuality: Number("int"),
|
|
294
|
+
* // NdiProgramName: "STRING_VALUE",
|
|
287
295
|
* // },
|
|
288
296
|
* // VpcInterfaceName: "STRING_VALUE",
|
|
289
297
|
* // WhitelistCidr: "STRING_VALUE",
|
|
@@ -304,7 +312,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
304
312
|
* // ],
|
|
305
313
|
* // NetworkInterfaceType: "ena" || "efa", // required
|
|
306
314
|
* // RoleArn: "STRING_VALUE", // required
|
|
307
|
-
* // SecurityGroupIds: "<
|
|
315
|
+
* // SecurityGroupIds: "<__listOfString>", // required
|
|
308
316
|
* // SubnetId: "STRING_VALUE", // required
|
|
309
317
|
* // },
|
|
310
318
|
* // ],
|
|
@@ -338,9 +346,21 @@ declare const DescribeFlowCommand_base: {
|
|
|
338
346
|
* // },
|
|
339
347
|
* // ],
|
|
340
348
|
* // },
|
|
349
|
+
* // FlowSize: "MEDIUM" || "LARGE",
|
|
350
|
+
* // NdiConfig: { // NdiConfig
|
|
351
|
+
* // NdiState: "ENABLED" || "DISABLED",
|
|
352
|
+
* // MachineName: "STRING_VALUE",
|
|
353
|
+
* // NdiDiscoveryServers: [ // __listOfNdiDiscoveryServerConfig
|
|
354
|
+
* // { // NdiDiscoveryServerConfig
|
|
355
|
+
* // DiscoveryServerAddress: "STRING_VALUE", // required
|
|
356
|
+
* // DiscoveryServerPort: Number("int"),
|
|
357
|
+
* // VpcInterfaceAdapter: "STRING_VALUE", // required
|
|
358
|
+
* // },
|
|
359
|
+
* // ],
|
|
360
|
+
* // },
|
|
341
361
|
* // },
|
|
342
362
|
* // Messages: { // Messages
|
|
343
|
-
* // Errors: "<
|
|
363
|
+
* // Errors: "<__listOfString>", // required
|
|
344
364
|
* // },
|
|
345
365
|
* // };
|
|
346
366
|
*
|
|
@@ -353,22 +373,28 @@ declare const DescribeFlowCommand_base: {
|
|
|
353
373
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
354
374
|
*
|
|
355
375
|
* @throws {@link BadRequestException} (client fault)
|
|
356
|
-
*
|
|
376
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
377
|
+
* </p>
|
|
357
378
|
*
|
|
358
379
|
* @throws {@link ForbiddenException} (client fault)
|
|
359
|
-
*
|
|
380
|
+
* <p>You do not have sufficient access to perform this action.
|
|
381
|
+
* </p>
|
|
360
382
|
*
|
|
361
383
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
362
|
-
*
|
|
384
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
385
|
+
* </p>
|
|
363
386
|
*
|
|
364
387
|
* @throws {@link NotFoundException} (client fault)
|
|
365
|
-
*
|
|
388
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
389
|
+
* </p>
|
|
366
390
|
*
|
|
367
391
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
368
|
-
*
|
|
392
|
+
* <p>The service is currently unavailable or busy.
|
|
393
|
+
* </p>
|
|
369
394
|
*
|
|
370
395
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
371
|
-
*
|
|
396
|
+
* <p>The request was denied due to request throttling.
|
|
397
|
+
* </p>
|
|
372
398
|
*
|
|
373
399
|
* @throws {@link MediaConnectServiceException}
|
|
374
400
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,9 @@ declare const DescribeFlowSourceMetadataCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* <p>
|
|
31
|
+
* The <code>DescribeFlowSourceMetadata</code> API is used to view information about the flow's source transport stream and programs. This API displays status messages about the flow's source as well as details about the program's video, audio, and other data.
|
|
32
|
+
* </p>
|
|
31
33
|
* @example
|
|
32
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
35
|
* ```javascript
|
|
@@ -85,22 +87,28 @@ declare const DescribeFlowSourceMetadataCommand_base: {
|
|
|
85
87
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
86
88
|
*
|
|
87
89
|
* @throws {@link BadRequestException} (client fault)
|
|
88
|
-
*
|
|
90
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
91
|
+
* </p>
|
|
89
92
|
*
|
|
90
93
|
* @throws {@link ForbiddenException} (client fault)
|
|
91
|
-
*
|
|
94
|
+
* <p>You do not have sufficient access to perform this action.
|
|
95
|
+
* </p>
|
|
92
96
|
*
|
|
93
97
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
94
|
-
*
|
|
98
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
99
|
+
* </p>
|
|
95
100
|
*
|
|
96
101
|
* @throws {@link NotFoundException} (client fault)
|
|
97
|
-
*
|
|
102
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
103
|
+
* </p>
|
|
98
104
|
*
|
|
99
105
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
100
|
-
*
|
|
106
|
+
* <p>The service is currently unavailable or busy.
|
|
107
|
+
* </p>
|
|
101
108
|
*
|
|
102
109
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
103
|
-
*
|
|
110
|
+
* <p>The request was denied due to request throttling.
|
|
111
|
+
* </p>
|
|
104
112
|
*
|
|
105
113
|
* @throws {@link MediaConnectServiceException}
|
|
106
114
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,9 @@ declare const DescribeFlowSourceThumbnailCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* <p>
|
|
31
|
+
* Describes the thumbnail for the flow source.
|
|
32
|
+
* </p>
|
|
31
33
|
* @example
|
|
32
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
35
|
* ```javascript
|
|
@@ -64,22 +66,28 @@ declare const DescribeFlowSourceThumbnailCommand_base: {
|
|
|
64
66
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
65
67
|
*
|
|
66
68
|
* @throws {@link BadRequestException} (client fault)
|
|
67
|
-
*
|
|
69
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
70
|
+
* </p>
|
|
68
71
|
*
|
|
69
72
|
* @throws {@link ForbiddenException} (client fault)
|
|
70
|
-
*
|
|
73
|
+
* <p>You do not have sufficient access to perform this action.
|
|
74
|
+
* </p>
|
|
71
75
|
*
|
|
72
76
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
73
|
-
*
|
|
77
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
78
|
+
* </p>
|
|
74
79
|
*
|
|
75
80
|
* @throws {@link NotFoundException} (client fault)
|
|
76
|
-
*
|
|
81
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
82
|
+
* </p>
|
|
77
83
|
*
|
|
78
84
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
79
|
-
*
|
|
85
|
+
* <p>The service is currently unavailable or busy.
|
|
86
|
+
* </p>
|
|
80
87
|
*
|
|
81
88
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
82
|
-
*
|
|
89
|
+
* <p>The request was denied due to request throttling.
|
|
90
|
+
* </p>
|
|
83
91
|
*
|
|
84
92
|
* @throws {@link MediaConnectServiceException}
|
|
85
93
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,8 @@ declare const DescribeGatewayCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays the details of a gateway. The response includes the gateway
|
|
30
|
+
* <p> Displays the details of a gateway. The response includes the gateway Amazon Resource Name
|
|
31
|
+
* (ARN), name, and CIDR blocks, as well as details about the networks.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -41,7 +42,7 @@ declare const DescribeGatewayCommand_base: {
|
|
|
41
42
|
* const response = await client.send(command);
|
|
42
43
|
* // { // DescribeGatewayResponse
|
|
43
44
|
* // Gateway: { // Gateway
|
|
44
|
-
* // EgressCidrBlocks: [ //
|
|
45
|
+
* // EgressCidrBlocks: [ // __listOfString // required
|
|
45
46
|
* // "STRING_VALUE",
|
|
46
47
|
* // ],
|
|
47
48
|
* // GatewayArn: "STRING_VALUE", // required
|
|
@@ -72,25 +73,32 @@ declare const DescribeGatewayCommand_base: {
|
|
|
72
73
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
73
74
|
*
|
|
74
75
|
* @throws {@link BadRequestException} (client fault)
|
|
75
|
-
*
|
|
76
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
77
|
+
* </p>
|
|
76
78
|
*
|
|
77
79
|
* @throws {@link ConflictException} (client fault)
|
|
78
|
-
*
|
|
80
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
81
|
+
* </p>
|
|
79
82
|
*
|
|
80
83
|
* @throws {@link ForbiddenException} (client fault)
|
|
81
|
-
*
|
|
84
|
+
* <p>You do not have sufficient access to perform this action.
|
|
85
|
+
* </p>
|
|
82
86
|
*
|
|
83
87
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
84
|
-
*
|
|
88
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
89
|
+
* </p>
|
|
85
90
|
*
|
|
86
91
|
* @throws {@link NotFoundException} (client fault)
|
|
87
|
-
*
|
|
92
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
93
|
+
* </p>
|
|
88
94
|
*
|
|
89
95
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
90
|
-
*
|
|
96
|
+
* <p>The service is currently unavailable or busy.
|
|
97
|
+
* </p>
|
|
91
98
|
*
|
|
92
99
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
93
|
-
*
|
|
100
|
+
* <p>The request was denied due to request throttling.
|
|
101
|
+
* </p>
|
|
94
102
|
*
|
|
95
103
|
* @throws {@link MediaConnectServiceException}
|
|
96
104
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,9 @@ declare const DescribeGatewayInstanceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* <p>
|
|
31
|
+
* Displays the details of an instance.
|
|
32
|
+
* </p>
|
|
31
33
|
* @example
|
|
32
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
35
|
* ```javascript
|
|
@@ -67,25 +69,32 @@ declare const DescribeGatewayInstanceCommand_base: {
|
|
|
67
69
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
68
70
|
*
|
|
69
71
|
* @throws {@link BadRequestException} (client fault)
|
|
70
|
-
*
|
|
72
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
73
|
+
* </p>
|
|
71
74
|
*
|
|
72
75
|
* @throws {@link ConflictException} (client fault)
|
|
73
|
-
*
|
|
76
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
77
|
+
* </p>
|
|
74
78
|
*
|
|
75
79
|
* @throws {@link ForbiddenException} (client fault)
|
|
76
|
-
*
|
|
80
|
+
* <p>You do not have sufficient access to perform this action.
|
|
81
|
+
* </p>
|
|
77
82
|
*
|
|
78
83
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
79
|
-
*
|
|
84
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
85
|
+
* </p>
|
|
80
86
|
*
|
|
81
87
|
* @throws {@link NotFoundException} (client fault)
|
|
82
|
-
*
|
|
88
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
89
|
+
* </p>
|
|
83
90
|
*
|
|
84
91
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
85
|
-
*
|
|
92
|
+
* <p>The service is currently unavailable or busy.
|
|
93
|
+
* </p>
|
|
86
94
|
*
|
|
87
95
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
88
|
-
*
|
|
96
|
+
* <p>The request was denied due to request throttling.
|
|
97
|
+
* </p>
|
|
89
98
|
*
|
|
90
99
|
* @throws {@link MediaConnectServiceException}
|
|
91
100
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const DescribeOfferingCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN)
|
|
30
|
+
* <p> Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -64,19 +64,24 @@ declare const DescribeOfferingCommand_base: {
|
|
|
64
64
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link BadRequestException} (client fault)
|
|
67
|
-
*
|
|
67
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
68
|
+
* </p>
|
|
68
69
|
*
|
|
69
70
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
70
|
-
*
|
|
71
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
72
|
+
* </p>
|
|
71
73
|
*
|
|
72
74
|
* @throws {@link NotFoundException} (client fault)
|
|
73
|
-
*
|
|
75
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
76
|
+
* </p>
|
|
74
77
|
*
|
|
75
78
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
76
|
-
*
|
|
79
|
+
* <p>The service is currently unavailable or busy.
|
|
80
|
+
* </p>
|
|
77
81
|
*
|
|
78
82
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
79
|
-
*
|
|
83
|
+
* <p>The request was denied due to request throttling.
|
|
84
|
+
* </p>
|
|
80
85
|
*
|
|
81
86
|
* @throws {@link MediaConnectServiceException}
|
|
82
87
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const DescribeReservationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays the details of a reservation. The response includes the reservation name, state, start date and time, and the details of the offering that make up the rest of the reservation (such as price, duration, and outbound bandwidth)
|
|
30
|
+
* <p> Displays the details of a reservation. The response includes the reservation name, state, start date and time, and the details of the offering that make up the rest of the reservation (such as price, duration, and outbound bandwidth).</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -69,19 +69,24 @@ declare const DescribeReservationCommand_base: {
|
|
|
69
69
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link BadRequestException} (client fault)
|
|
72
|
-
*
|
|
72
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
73
|
+
* </p>
|
|
73
74
|
*
|
|
74
75
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
75
|
-
*
|
|
76
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
77
|
+
* </p>
|
|
76
78
|
*
|
|
77
79
|
* @throws {@link NotFoundException} (client fault)
|
|
78
|
-
*
|
|
80
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
81
|
+
* </p>
|
|
79
82
|
*
|
|
80
83
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
81
|
-
*
|
|
84
|
+
* <p>The service is currently unavailable or busy.
|
|
85
|
+
* </p>
|
|
82
86
|
*
|
|
83
87
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
84
|
-
*
|
|
88
|
+
* <p>The request was denied due to request throttling.
|
|
89
|
+
* </p>
|
|
85
90
|
*
|
|
86
91
|
* @throws {@link MediaConnectServiceException}
|
|
87
92
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const GrantFlowEntitlementsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Grants entitlements to an existing flow
|
|
30
|
+
* <p> Grants entitlements to an existing flow.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -52,7 +52,7 @@ declare const GrantFlowEntitlementsCommand_base: {
|
|
|
52
52
|
* },
|
|
53
53
|
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
54
54
|
* Name: "STRING_VALUE",
|
|
55
|
-
* Subscribers: [ //
|
|
55
|
+
* Subscribers: [ // __listOfString // required
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
@@ -80,7 +80,7 @@ declare const GrantFlowEntitlementsCommand_base: {
|
|
|
80
80
|
* // EntitlementArn: "STRING_VALUE", // required
|
|
81
81
|
* // EntitlementStatus: "ENABLED" || "DISABLED",
|
|
82
82
|
* // Name: "STRING_VALUE", // required
|
|
83
|
-
* // Subscribers: [ //
|
|
83
|
+
* // Subscribers: [ // __listOfString // required
|
|
84
84
|
* // "STRING_VALUE",
|
|
85
85
|
* // ],
|
|
86
86
|
* // },
|
|
@@ -97,25 +97,32 @@ declare const GrantFlowEntitlementsCommand_base: {
|
|
|
97
97
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
98
98
|
*
|
|
99
99
|
* @throws {@link BadRequestException} (client fault)
|
|
100
|
-
*
|
|
100
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
101
|
+
* </p>
|
|
101
102
|
*
|
|
102
103
|
* @throws {@link ForbiddenException} (client fault)
|
|
103
|
-
*
|
|
104
|
+
* <p>You do not have sufficient access to perform this action.
|
|
105
|
+
* </p>
|
|
104
106
|
*
|
|
105
107
|
* @throws {@link GrantFlowEntitlements420Exception} (client fault)
|
|
106
|
-
* Exception raised by
|
|
108
|
+
* <p>Exception raised by Elemental MediaConnect when granting the entitlement. See the error message for the operation for more information on the cause of this exception.
|
|
109
|
+
* </p>
|
|
107
110
|
*
|
|
108
111
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
109
|
-
*
|
|
112
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
113
|
+
* </p>
|
|
110
114
|
*
|
|
111
115
|
* @throws {@link NotFoundException} (client fault)
|
|
112
|
-
*
|
|
116
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
117
|
+
* </p>
|
|
113
118
|
*
|
|
114
119
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
115
|
-
*
|
|
120
|
+
* <p>The service is currently unavailable or busy.
|
|
121
|
+
* </p>
|
|
116
122
|
*
|
|
117
123
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
118
|
-
*
|
|
124
|
+
* <p>The request was denied due to request throttling.
|
|
125
|
+
* </p>
|
|
119
126
|
*
|
|
120
127
|
* @throws {@link MediaConnectServiceException}
|
|
121
128
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,8 @@ declare const ListBridgesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays a list of bridges that are associated with this account and an optionally
|
|
30
|
+
* <p> Displays a list of bridges that are associated with this account and an optionally
|
|
31
|
+
* specified Amazon Resource Name (ARN). This request returns a paginated result.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -63,19 +64,24 @@ declare const ListBridgesCommand_base: {
|
|
|
63
64
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
64
65
|
*
|
|
65
66
|
* @throws {@link BadRequestException} (client fault)
|
|
66
|
-
*
|
|
67
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
68
|
+
* </p>
|
|
67
69
|
*
|
|
68
70
|
* @throws {@link ConflictException} (client fault)
|
|
69
|
-
*
|
|
71
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
72
|
+
* </p>
|
|
70
73
|
*
|
|
71
74
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
72
|
-
*
|
|
75
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
76
|
+
* </p>
|
|
73
77
|
*
|
|
74
78
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
75
|
-
*
|
|
79
|
+
* <p>The service is currently unavailable or busy.
|
|
80
|
+
* </p>
|
|
76
81
|
*
|
|
77
82
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
78
|
-
*
|
|
83
|
+
* <p>The request was denied due to request throttling.
|
|
84
|
+
* </p>
|
|
79
85
|
*
|
|
80
86
|
* @throws {@link MediaConnectServiceException}
|
|
81
87
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const ListEntitlementsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays a list of all entitlements that have been granted to this account. This request returns 20 results per page
|
|
30
|
+
* <p> Displays a list of all entitlements that have been granted to this account. This request returns 20 results per page.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -60,16 +60,20 @@ declare const ListEntitlementsCommand_base: {
|
|
|
60
60
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link BadRequestException} (client fault)
|
|
63
|
-
*
|
|
63
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
64
|
+
* </p>
|
|
64
65
|
*
|
|
65
66
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
66
|
-
*
|
|
67
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
68
|
+
* </p>
|
|
67
69
|
*
|
|
68
70
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
69
|
-
*
|
|
71
|
+
* <p>The service is currently unavailable or busy.
|
|
72
|
+
* </p>
|
|
70
73
|
*
|
|
71
74
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
72
|
-
*
|
|
75
|
+
* <p>The request was denied due to request throttling.
|
|
76
|
+
* </p>
|
|
73
77
|
*
|
|
74
78
|
* @throws {@link MediaConnectServiceException}
|
|
75
79
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|