@aws-sdk/client-mediaconnect 3.1027.0 → 3.1029.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 (31) hide show
  1. package/dist-cjs/index.js +15 -9
  2. package/dist-cjs/schemas/schemas_0.js +38 -20
  3. package/dist-es/MediaConnect.js +5 -5
  4. package/dist-es/models/enums.js +9 -4
  5. package/dist-es/schemas/schemas_0.js +32 -14
  6. package/dist-es/waiters/index.js +5 -5
  7. package/dist-types/MediaConnect.d.ts +8 -8
  8. package/dist-types/commands/BatchGetRouterInputCommand.d.ts +39 -29
  9. package/dist-types/commands/BatchGetRouterOutputCommand.d.ts +5 -5
  10. package/dist-types/commands/CreateRouterInputCommand.d.ts +75 -56
  11. package/dist-types/commands/CreateRouterOutputCommand.d.ts +10 -10
  12. package/dist-types/commands/GetRouterInputCommand.d.ts +39 -29
  13. package/dist-types/commands/GetRouterOutputCommand.d.ts +5 -5
  14. package/dist-types/commands/ListRouterInputsCommand.d.ts +6 -6
  15. package/dist-types/commands/ListRouterOutputsCommand.d.ts +8 -8
  16. package/dist-types/commands/RestartRouterInputCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateRouterInputCommand.d.ts +75 -56
  18. package/dist-types/commands/UpdateRouterOutputCommand.d.ts +10 -10
  19. package/dist-types/models/enums.d.ts +25 -12
  20. package/dist-types/models/models_0.d.ts +263 -225
  21. package/dist-types/models/models_1.d.ts +30 -0
  22. package/dist-types/schemas/schemas_0.d.ts +2 -0
  23. package/dist-types/ts3.4/MediaConnect.d.ts +8 -8
  24. package/dist-types/ts3.4/commands/RestartRouterInputCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/models/enums.d.ts +13 -6
  26. package/dist-types/ts3.4/models/models_0.d.ts +175 -145
  27. package/dist-types/ts3.4/models/models_1.d.ts +8 -0
  28. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  29. package/dist-types/ts3.4/waiters/index.d.ts +5 -5
  30. package/dist-types/waiters/index.d.ts +5 -5
  31. package/package.json +1 -1
@@ -1,5 +1,35 @@
1
1
  import type { MaintenanceScheduleType, RouterInputState, RouterInputTier, RouterOutputRoutedState, RouterOutputState, RouterOutputTier, RoutingScope } from "./enums";
2
2
  import type { MaintenanceConfiguration, MaintenanceSchedule, RouterInput, RouterInputConfiguration, RouterInputTransitEncryption, RouterNetworkInterface, RouterNetworkInterfaceConfiguration, RouterOutput, RouterOutputConfiguration } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface RestartRouterInputRequest {
7
+ /**
8
+ * <p>The Amazon Resource Name (ARN) of the router input that you want to restart.</p>
9
+ * @public
10
+ */
11
+ Arn: string | undefined;
12
+ }
13
+ /**
14
+ * @public
15
+ */
16
+ export interface RestartRouterInputResponse {
17
+ /**
18
+ * <p>The ARN of the router input that was restarted.</p>
19
+ * @public
20
+ */
21
+ Arn: string | undefined;
22
+ /**
23
+ * <p>The name of the router input that was restarted.</p>
24
+ * @public
25
+ */
26
+ Name: string | undefined;
27
+ /**
28
+ * <p>The current state of the router input after the restart operation.</p>
29
+ * @public
30
+ */
31
+ State: RouterInputState | undefined;
32
+ }
3
33
  /**
4
34
  * @public
5
35
  */
@@ -183,6 +183,8 @@ export declare var MediaConnectFlowRouterInputConfiguration$: StaticStructureSch
183
183
  export declare var MediaConnectFlowRouterInputStreamDetails$: StaticStructureSchema;
184
184
  export declare var MediaConnectFlowRouterOutputConfiguration$: StaticStructureSchema;
185
185
  export declare var MediaConnectFlowRouterOutputStreamDetails$: StaticStructureSchema;
186
+ export declare var MediaLiveChannelRouterInputConfiguration$: StaticStructureSchema;
187
+ export declare var MediaLiveChannelRouterInputStreamDetails$: StaticStructureSchema;
186
188
  export declare var MediaLiveInputRouterOutputConfiguration$: StaticStructureSchema;
187
189
  export declare var MediaLiveInputRouterOutputStreamDetails$: StaticStructureSchema;
188
190
  export declare var MediaLiveTransitEncryption$: StaticStructureSchema;
@@ -1490,7 +1490,7 @@ export interface MediaConnect {
1490
1490
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1491
1491
  >
1492
1492
  ): Promise<WaiterResult>;
1493
- waitUntilFlowDeleted(
1493
+ waitUntilFlowStandby(
1494
1494
  args: DescribeFlowCommandInput,
1495
1495
  waiterConfig:
1496
1496
  | number
@@ -1499,7 +1499,7 @@ export interface MediaConnect {
1499
1499
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1500
1500
  >
1501
1501
  ): Promise<WaiterResult>;
1502
- waitUntilFlowStandby(
1502
+ waitUntilFlowDeleted(
1503
1503
  args: DescribeFlowCommandInput,
1504
1504
  waiterConfig:
1505
1505
  | number
@@ -1508,7 +1508,7 @@ export interface MediaConnect {
1508
1508
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1509
1509
  >
1510
1510
  ): Promise<WaiterResult>;
1511
- waitUntilInputStandby(
1511
+ waitUntilInputActive(
1512
1512
  args: GetRouterInputCommandInput,
1513
1513
  waiterConfig:
1514
1514
  | number
@@ -1517,7 +1517,7 @@ export interface MediaConnect {
1517
1517
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1518
1518
  >
1519
1519
  ): Promise<WaiterResult>;
1520
- waitUntilInputDeleted(
1520
+ waitUntilInputStandby(
1521
1521
  args: GetRouterInputCommandInput,
1522
1522
  waiterConfig:
1523
1523
  | number
@@ -1526,7 +1526,7 @@ export interface MediaConnect {
1526
1526
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1527
1527
  >
1528
1528
  ): Promise<WaiterResult>;
1529
- waitUntilInputActive(
1529
+ waitUntilInputDeleted(
1530
1530
  args: GetRouterInputCommandInput,
1531
1531
  waiterConfig:
1532
1532
  | number
@@ -1535,7 +1535,7 @@ export interface MediaConnect {
1535
1535
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1536
1536
  >
1537
1537
  ): Promise<WaiterResult>;
1538
- waitUntilOutputUnrouted(
1538
+ waitUntilOutputActive(
1539
1539
  args: GetRouterOutputCommandInput,
1540
1540
  waiterConfig:
1541
1541
  | number
@@ -1553,7 +1553,7 @@ export interface MediaConnect {
1553
1553
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1554
1554
  >
1555
1555
  ): Promise<WaiterResult>;
1556
- waitUntilOutputActive(
1556
+ waitUntilOutputRouted(
1557
1557
  args: GetRouterOutputCommandInput,
1558
1558
  waiterConfig:
1559
1559
  | number
@@ -1571,7 +1571,7 @@ export interface MediaConnect {
1571
1571
  Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1572
1572
  >
1573
1573
  ): Promise<WaiterResult>;
1574
- waitUntilOutputRouted(
1574
+ waitUntilOutputUnrouted(
1575
1575
  args: GetRouterOutputCommandInput,
1576
1576
  waiterConfig:
1577
1577
  | number
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  RestartRouterInputRequest,
10
10
  RestartRouterInputResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface RestartRouterInputCommandInput
@@ -198,6 +198,18 @@ export declare const FailoverInputSourcePriorityMode: {
198
198
  };
199
199
  export type FailoverInputSourcePriorityMode =
200
200
  (typeof FailoverInputSourcePriorityMode)[keyof typeof FailoverInputSourcePriorityMode];
201
+ export declare const MediaLiveChannelPipelineId: {
202
+ readonly PIPELINE_0: "PIPELINE_0";
203
+ readonly PIPELINE_1: "PIPELINE_1";
204
+ };
205
+ export type MediaLiveChannelPipelineId =
206
+ (typeof MediaLiveChannelPipelineId)[keyof typeof MediaLiveChannelPipelineId];
207
+ export declare const MediaLiveTransitEncryptionKeyType: {
208
+ readonly AUTOMATIC: "AUTOMATIC";
209
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
210
+ };
211
+ export type MediaLiveTransitEncryptionKeyType =
212
+ (typeof MediaLiveTransitEncryptionKeyType)[keyof typeof MediaLiveTransitEncryptionKeyType];
201
213
  export declare const RouterInputProtocol: {
202
214
  readonly RIST: "RIST";
203
215
  readonly RTP: "RTP";
@@ -209,6 +221,7 @@ export type RouterInputProtocol =
209
221
  export declare const RouterInputType: {
210
222
  readonly FAILOVER: "FAILOVER";
211
223
  readonly MEDIACONNECT_FLOW: "MEDIACONNECT_FLOW";
224
+ readonly MEDIALIVE_CHANNEL: "MEDIALIVE_CHANNEL";
212
225
  readonly MERGE: "MERGE";
213
226
  readonly STANDARD: "STANDARD";
214
227
  };
@@ -283,12 +296,6 @@ export declare const RouterNetworkInterfaceState: {
283
296
  };
284
297
  export type RouterNetworkInterfaceState =
285
298
  (typeof RouterNetworkInterfaceState)[keyof typeof RouterNetworkInterfaceState];
286
- export declare const MediaLiveTransitEncryptionKeyType: {
287
- readonly AUTOMATIC: "AUTOMATIC";
288
- readonly SECRETS_MANAGER: "SECRETS_MANAGER";
289
- };
290
- export type MediaLiveTransitEncryptionKeyType =
291
- (typeof MediaLiveTransitEncryptionKeyType)[keyof typeof MediaLiveTransitEncryptionKeyType];
292
299
  export declare const MediaLiveInputPipelineId: {
293
300
  readonly PIPELINE_0: "PIPELINE_0";
294
301
  readonly PIPELINE_1: "PIPELINE_1";