@aws-sdk/client-medialive 3.781.0 → 3.784.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 (57) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +332 -14
  3. package/dist-es/MediaLive.js +10 -0
  4. package/dist-es/commands/CreateSdiSourceCommand.js +22 -0
  5. package/dist-es/commands/DeleteSdiSourceCommand.js +22 -0
  6. package/dist-es/commands/DescribeSdiSourceCommand.js +22 -0
  7. package/dist-es/commands/ListSdiSourcesCommand.js +22 -0
  8. package/dist-es/commands/UpdateSdiSourceCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +1 -4
  11. package/dist-es/models/models_1.js +17 -8
  12. package/dist-es/models/models_2.js +8 -0
  13. package/dist-es/pagination/ListSdiSourcesPaginator.js +4 -0
  14. package/dist-es/pagination/index.js +1 -0
  15. package/dist-es/protocols/Aws_restJson1.js +204 -0
  16. package/dist-types/MediaLive.d.ts +37 -0
  17. package/dist-types/MediaLiveClient.d.ts +7 -2
  18. package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateInputCommand.d.ts +8 -2
  20. package/dist-types/commands/CreateNodeCommand.d.ts +7 -0
  21. package/dist-types/commands/CreatePartnerInputCommand.d.ts +4 -1
  22. package/dist-types/commands/CreateSdiSourceCommand.d.ts +109 -0
  23. package/dist-types/commands/DeleteNodeCommand.d.ts +7 -0
  24. package/dist-types/commands/DeleteSdiSourceCommand.d.ts +106 -0
  25. package/dist-types/commands/DescribeInputCommand.d.ts +4 -1
  26. package/dist-types/commands/DescribeNodeCommand.d.ts +7 -0
  27. package/dist-types/commands/DescribeSdiSourceCommand.d.ts +103 -0
  28. package/dist-types/commands/ListInputsCommand.d.ts +4 -1
  29. package/dist-types/commands/ListNodesCommand.d.ts +7 -0
  30. package/dist-types/commands/ListSdiSourcesCommand.d.ts +104 -0
  31. package/dist-types/commands/UpdateInputCommand.d.ts +7 -1
  32. package/dist-types/commands/UpdateNodeCommand.d.ts +14 -0
  33. package/dist-types/commands/UpdateNodeStateCommand.d.ts +7 -0
  34. package/dist-types/commands/UpdateSdiSourceCommand.d.ts +106 -0
  35. package/dist-types/commands/index.d.ts +5 -0
  36. package/dist-types/models/models_0.d.ts +32 -12
  37. package/dist-types/models/models_1.d.ts +91 -53
  38. package/dist-types/models/models_2.d.ts +316 -2
  39. package/dist-types/pagination/ListSdiSourcesPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  42. package/dist-types/ts3.4/MediaLive.d.ts +87 -0
  43. package/dist-types/ts3.4/MediaLiveClient.d.ts +32 -2
  44. package/dist-types/ts3.4/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/CreateSdiSourceCommand.d.ts +50 -0
  46. package/dist-types/ts3.4/commands/DeleteSdiSourceCommand.d.ts +50 -0
  47. package/dist-types/ts3.4/commands/DescribeSdiSourceCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/ListSdiSourcesCommand.d.ts +50 -0
  49. package/dist-types/ts3.4/commands/UpdateSdiSourceCommand.d.ts +50 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +8 -6
  52. package/dist-types/ts3.4/models/models_1.d.ts +32 -21
  53. package/dist-types/ts3.4/models/models_2.d.ts +87 -3
  54. package/dist-types/ts3.4/pagination/ListSdiSourcesPaginator.d.ts +11 -0
  55. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  56. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  57. package/package.json +5 -5
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MediaLiveClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MediaLiveClient";
8
+ import {
9
+ UpdateSdiSourceRequest,
10
+ UpdateSdiSourceResponse,
11
+ } from "../models/models_2";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateSdiSourceCommandInput extends UpdateSdiSourceRequest {}
15
+ export interface UpdateSdiSourceCommandOutput
16
+ extends UpdateSdiSourceResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateSdiSourceCommand_base: {
19
+ new (
20
+ input: UpdateSdiSourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateSdiSourceCommandInput,
23
+ UpdateSdiSourceCommandOutput,
24
+ MediaLiveClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UpdateSdiSourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateSdiSourceCommandInput,
32
+ UpdateSdiSourceCommandOutput,
33
+ MediaLiveClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateSdiSourceCommand extends UpdateSdiSourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateSdiSourceRequest;
43
+ output: UpdateSdiSourceResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateSdiSourceCommandInput;
47
+ output: UpdateSdiSourceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -20,6 +20,7 @@ export * from "./CreateNetworkCommand";
20
20
  export * from "./CreateNodeCommand";
21
21
  export * from "./CreateNodeRegistrationScriptCommand";
22
22
  export * from "./CreatePartnerInputCommand";
23
+ export * from "./CreateSdiSourceCommand";
23
24
  export * from "./CreateSignalMapCommand";
24
25
  export * from "./CreateTagsCommand";
25
26
  export * from "./DeleteChannelCommand";
@@ -37,6 +38,7 @@ export * from "./DeleteNetworkCommand";
37
38
  export * from "./DeleteNodeCommand";
38
39
  export * from "./DeleteReservationCommand";
39
40
  export * from "./DeleteScheduleCommand";
41
+ export * from "./DeleteSdiSourceCommand";
40
42
  export * from "./DeleteSignalMapCommand";
41
43
  export * from "./DeleteTagsCommand";
42
44
  export * from "./DescribeAccountConfigurationCommand";
@@ -54,6 +56,7 @@ export * from "./DescribeNodeCommand";
54
56
  export * from "./DescribeOfferingCommand";
55
57
  export * from "./DescribeReservationCommand";
56
58
  export * from "./DescribeScheduleCommand";
59
+ export * from "./DescribeSdiSourceCommand";
57
60
  export * from "./DescribeThumbnailsCommand";
58
61
  export * from "./GetCloudWatchAlarmTemplateCommand";
59
62
  export * from "./GetCloudWatchAlarmTemplateGroupCommand";
@@ -77,6 +80,7 @@ export * from "./ListNetworksCommand";
77
80
  export * from "./ListNodesCommand";
78
81
  export * from "./ListOfferingsCommand";
79
82
  export * from "./ListReservationsCommand";
83
+ export * from "./ListSdiSourcesCommand";
80
84
  export * from "./ListSignalMapsCommand";
81
85
  export * from "./ListTagsForResourceCommand";
82
86
  export * from "./ListVersionsCommand";
@@ -113,3 +117,4 @@ export * from "./UpdateNetworkCommand";
113
117
  export * from "./UpdateNodeCommand";
114
118
  export * from "./UpdateNodeStateCommand";
115
119
  export * from "./UpdateReservationCommand";
120
+ export * from "./UpdateSdiSourceCommand";
@@ -1282,6 +1282,11 @@ export declare const NodeRole: {
1282
1282
  readonly BACKUP: "BACKUP";
1283
1283
  };
1284
1284
  export type NodeRole = (typeof NodeRole)[keyof typeof NodeRole];
1285
+ export interface SdiSourceMapping {
1286
+ CardNumber?: number | undefined;
1287
+ ChannelNumber?: number | undefined;
1288
+ SdiSource?: string | undefined;
1289
+ }
1285
1290
  export declare const NodeState: {
1286
1291
  readonly ACTIVATION_FAILED: "ACTIVATION_FAILED";
1287
1292
  readonly ACTIVE: "ACTIVE";
@@ -1309,6 +1314,7 @@ export interface DescribeNodeSummary {
1309
1314
  NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
1310
1315
  Role?: NodeRole | undefined;
1311
1316
  State?: NodeState | undefined;
1317
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
1312
1318
  }
1313
1319
  export interface EventBridgeRuleTemplateGroupSummary {
1314
1320
  Arn: string | undefined;
@@ -1461,6 +1467,7 @@ export declare const InputType: {
1461
1467
  readonly RTMP_PULL: "RTMP_PULL";
1462
1468
  readonly RTMP_PUSH: "RTMP_PUSH";
1463
1469
  readonly RTP_PUSH: "RTP_PUSH";
1470
+ readonly SDI: "SDI";
1464
1471
  readonly SMPTE_2110_RECEIVER_GROUP: "SMPTE_2110_RECEIVER_GROUP";
1465
1472
  readonly SRT_CALLER: "SRT_CALLER";
1466
1473
  readonly TS_FILE: "TS_FILE";
@@ -1489,6 +1496,7 @@ export interface Input {
1489
1496
  InputNetworkLocation?: InputNetworkLocation | undefined;
1490
1497
  MulticastSettings?: MulticastSettings | undefined;
1491
1498
  Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
1499
+ SdiSources?: string[] | undefined;
1492
1500
  }
1493
1501
  export interface InputRequestDestinationRoute {
1494
1502
  Cidr?: string | undefined;
@@ -1981,9 +1989,3 @@ export declare const M2tsSegmentationStyle: {
1981
1989
  };
1982
1990
  export type M2tsSegmentationStyle =
1983
1991
  (typeof M2tsSegmentationStyle)[keyof typeof M2tsSegmentationStyle];
1984
- export declare const M2tsTimedMetadataBehavior: {
1985
- readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
1986
- readonly PASSTHROUGH: "PASSTHROUGH";
1987
- };
1988
- export type M2tsTimedMetadataBehavior =
1989
- (typeof M2tsTimedMetadataBehavior)[keyof typeof M2tsTimedMetadataBehavior];
@@ -6,7 +6,6 @@ import {
6
6
  BatchSuccessfulResultModel,
7
7
  CaptionLanguageMapping,
8
8
  ChannelEngineVersionResponse,
9
- ColorCorrection,
10
9
  DvbNitSettings,
11
10
  DvbSdtSettings,
12
11
  DvbTdtSettings,
@@ -31,11 +30,16 @@ import {
31
30
  M2tsScte35Control,
32
31
  M2tsSegmentationMarkers,
33
32
  M2tsSegmentationStyle,
34
- M2tsTimedMetadataBehavior,
35
33
  OfferingDurationUnits,
36
34
  OfferingType,
37
35
  ReservationResourceSpecification,
38
36
  } from "./models_0";
37
+ export declare const M2tsTimedMetadataBehavior: {
38
+ readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
39
+ readonly PASSTHROUGH: "PASSTHROUGH";
40
+ };
41
+ export type M2tsTimedMetadataBehavior =
42
+ (typeof M2tsTimedMetadataBehavior)[keyof typeof M2tsTimedMetadataBehavior];
39
43
  export interface M2tsSettings {
40
44
  AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior | undefined;
41
45
  Arib?: M2tsArib | undefined;
@@ -1101,6 +1105,32 @@ export interface ScheduleAction {
1101
1105
  ScheduleActionSettings: ScheduleActionSettings | undefined;
1102
1106
  ScheduleActionStartSettings: ScheduleActionStartSettings | undefined;
1103
1107
  }
1108
+ export declare const SdiSourceMode: {
1109
+ readonly INTERLEAVE: "INTERLEAVE";
1110
+ readonly QUADRANT: "QUADRANT";
1111
+ };
1112
+ export type SdiSourceMode = (typeof SdiSourceMode)[keyof typeof SdiSourceMode];
1113
+ export declare const SdiSourceState: {
1114
+ readonly DELETED: "DELETED";
1115
+ readonly IDLE: "IDLE";
1116
+ readonly IN_USE: "IN_USE";
1117
+ };
1118
+ export type SdiSourceState =
1119
+ (typeof SdiSourceState)[keyof typeof SdiSourceState];
1120
+ export declare const SdiSourceType: {
1121
+ readonly QUAD: "QUAD";
1122
+ readonly SINGLE: "SINGLE";
1123
+ };
1124
+ export type SdiSourceType = (typeof SdiSourceType)[keyof typeof SdiSourceType];
1125
+ export interface SdiSourceSummary {
1126
+ Arn?: string | undefined;
1127
+ Id?: string | undefined;
1128
+ Inputs?: string[] | undefined;
1129
+ Mode?: SdiSourceMode | undefined;
1130
+ Name?: string | undefined;
1131
+ State?: SdiSourceState | undefined;
1132
+ Type?: SdiSourceType | undefined;
1133
+ }
1104
1134
  export declare const SignalMapMonitorDeploymentStatus: {
1105
1135
  readonly DELETE_COMPLETE: "DELETE_COMPLETE";
1106
1136
  readonly DELETE_FAILED: "DELETE_FAILED";
@@ -2055,22 +2085,3 @@ export interface BlackoutSlate {
2055
2085
  NetworkId?: string | undefined;
2056
2086
  State?: BlackoutSlateState | undefined;
2057
2087
  }
2058
- export interface CancelInputDeviceTransferRequest {
2059
- InputDeviceId: string | undefined;
2060
- }
2061
- export interface CancelInputDeviceTransferResponse {}
2062
- export interface ColorCorrectionSettings {
2063
- GlobalColorCorrections: ColorCorrection[] | undefined;
2064
- }
2065
- export declare const FeatureActivationsInputPrepareScheduleActions: {
2066
- readonly DISABLED: "DISABLED";
2067
- readonly ENABLED: "ENABLED";
2068
- };
2069
- export type FeatureActivationsInputPrepareScheduleActions =
2070
- (typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
2071
- export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions: {
2072
- readonly DISABLED: "DISABLED";
2073
- readonly ENABLED: "ENABLED";
2074
- };
2075
- export type FeatureActivationsOutputStaticImageOverlayScheduleActions =
2076
- (typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
@@ -19,6 +19,7 @@ import {
19
19
  ClusterNetworkSettings,
20
20
  ClusterState,
21
21
  ClusterType,
22
+ ColorCorrection,
22
23
  DescribeAnywhereSettings,
23
24
  DescribeChannelPlacementGroupSummary,
24
25
  DescribeClusterSummary,
@@ -90,6 +91,7 @@ import {
90
91
  OutputDestination,
91
92
  ReservationResourceSpecification,
92
93
  Route,
94
+ SdiSourceMapping,
93
95
  Smpte2110ReceiverGroupSettings,
94
96
  SrtSettings,
95
97
  VpcOutputSettingsDescription,
@@ -101,9 +103,6 @@ import {
101
103
  AvailBlanking,
102
104
  AvailConfiguration,
103
105
  BlackoutSlate,
104
- ColorCorrectionSettings,
105
- FeatureActivationsInputPrepareScheduleActions,
106
- FeatureActivationsOutputStaticImageOverlayScheduleActions,
107
106
  OutputGroup,
108
107
  PipelineDetail,
109
108
  RenewalSettings,
@@ -112,6 +111,10 @@ import {
112
111
  RouteCreateRequest,
113
112
  RouteUpdateRequest,
114
113
  ScheduleAction,
114
+ SdiSourceMode,
115
+ SdiSourceState,
116
+ SdiSourceSummary,
117
+ SdiSourceType,
115
118
  SignalMapMonitorDeploymentStatus,
116
119
  SignalMapStatus,
117
120
  SignalMapSummary,
@@ -120,6 +123,25 @@ import {
120
123
  TransferringInputDeviceSummary,
121
124
  VideoDescription,
122
125
  } from "./models_1";
126
+ export interface CancelInputDeviceTransferRequest {
127
+ InputDeviceId: string | undefined;
128
+ }
129
+ export interface CancelInputDeviceTransferResponse {}
130
+ export interface ColorCorrectionSettings {
131
+ GlobalColorCorrections: ColorCorrection[] | undefined;
132
+ }
133
+ export declare const FeatureActivationsInputPrepareScheduleActions: {
134
+ readonly DISABLED: "DISABLED";
135
+ readonly ENABLED: "ENABLED";
136
+ };
137
+ export type FeatureActivationsInputPrepareScheduleActions =
138
+ (typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
139
+ export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions: {
140
+ readonly DISABLED: "DISABLED";
141
+ readonly ENABLED: "ENABLED";
142
+ };
143
+ export type FeatureActivationsOutputStaticImageOverlayScheduleActions =
144
+ (typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
123
145
  export interface FeatureActivations {
124
146
  InputPrepareScheduleActions?:
125
147
  | FeatureActivationsInputPrepareScheduleActions
@@ -462,6 +484,7 @@ export interface CreateInputRequest {
462
484
  InputNetworkLocation?: InputNetworkLocation | undefined;
463
485
  MulticastSettings?: MulticastSettingsCreateRequest | undefined;
464
486
  Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
487
+ SdiSources?: string[] | undefined;
465
488
  }
466
489
  export interface CreateInputResponse {
467
490
  Input?: Input | undefined;
@@ -597,6 +620,7 @@ export interface CreateNodeResponse {
597
620
  NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
598
621
  Role?: NodeRole | undefined;
599
622
  State?: NodeState | undefined;
623
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
600
624
  }
601
625
  export interface CreateNodeRegistrationScriptRequest {
602
626
  ClusterId: string | undefined;
@@ -617,6 +641,25 @@ export interface CreatePartnerInputRequest {
617
641
  export interface CreatePartnerInputResponse {
618
642
  Input?: Input | undefined;
619
643
  }
644
+ export interface CreateSdiSourceRequest {
645
+ Mode?: SdiSourceMode | undefined;
646
+ Name?: string | undefined;
647
+ RequestId?: string | undefined;
648
+ Tags?: Record<string, string> | undefined;
649
+ Type?: SdiSourceType | undefined;
650
+ }
651
+ export interface SdiSource {
652
+ Arn?: string | undefined;
653
+ Id?: string | undefined;
654
+ Inputs?: string[] | undefined;
655
+ Mode?: SdiSourceMode | undefined;
656
+ Name?: string | undefined;
657
+ State?: SdiSourceState | undefined;
658
+ Type?: SdiSourceType | undefined;
659
+ }
660
+ export interface CreateSdiSourceResponse {
661
+ SdiSource?: SdiSource | undefined;
662
+ }
620
663
  export interface CreateSignalMapRequest {
621
664
  CloudWatchAlarmTemplateGroupIdentifiers?: string[] | undefined;
622
665
  Description?: string | undefined;
@@ -788,6 +831,7 @@ export interface DeleteNodeResponse {
788
831
  NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
789
832
  Role?: NodeRole | undefined;
790
833
  State?: NodeState | undefined;
834
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
791
835
  }
792
836
  export interface DeleteReservationRequest {
793
837
  ReservationId: string | undefined;
@@ -817,6 +861,12 @@ export interface DeleteScheduleRequest {
817
861
  ChannelId: string | undefined;
818
862
  }
819
863
  export interface DeleteScheduleResponse {}
864
+ export interface DeleteSdiSourceRequest {
865
+ SdiSourceId: string | undefined;
866
+ }
867
+ export interface DeleteSdiSourceResponse {
868
+ SdiSource?: SdiSource | undefined;
869
+ }
820
870
  export interface DeleteSignalMapRequest {
821
871
  Identifier: string | undefined;
822
872
  }
@@ -903,6 +953,7 @@ export interface DescribeInputResponse {
903
953
  InputNetworkLocation?: InputNetworkLocation | undefined;
904
954
  MulticastSettings?: MulticastSettings | undefined;
905
955
  Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
956
+ SdiSources?: string[] | undefined;
906
957
  }
907
958
  export interface DescribeInputDeviceRequest {
908
959
  InputDeviceId: string | undefined;
@@ -1000,6 +1051,7 @@ export interface DescribeNodeResponse {
1000
1051
  NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
1001
1052
  Role?: NodeRole | undefined;
1002
1053
  State?: NodeState | undefined;
1054
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
1003
1055
  }
1004
1056
  export interface DescribeOfferingRequest {
1005
1057
  OfferingId: string | undefined;
@@ -1050,6 +1102,12 @@ export interface DescribeScheduleResponse {
1050
1102
  NextToken?: string | undefined;
1051
1103
  ScheduleActions?: ScheduleAction[] | undefined;
1052
1104
  }
1105
+ export interface DescribeSdiSourceRequest {
1106
+ SdiSourceId: string | undefined;
1107
+ }
1108
+ export interface DescribeSdiSourceResponse {
1109
+ SdiSource?: SdiSource | undefined;
1110
+ }
1053
1111
  export interface DescribeThumbnailsRequest {
1054
1112
  ChannelId: string | undefined;
1055
1113
  PipelineId: string | undefined;
@@ -1330,6 +1388,14 @@ export interface ListReservationsResponse {
1330
1388
  NextToken?: string | undefined;
1331
1389
  Reservations?: Reservation[] | undefined;
1332
1390
  }
1391
+ export interface ListSdiSourcesRequest {
1392
+ MaxResults?: number | undefined;
1393
+ NextToken?: string | undefined;
1394
+ }
1395
+ export interface ListSdiSourcesResponse {
1396
+ NextToken?: string | undefined;
1397
+ SdiSources?: SdiSourceSummary[] | undefined;
1398
+ }
1333
1399
  export interface ListSignalMapsRequest {
1334
1400
  CloudWatchAlarmTemplateGroupIdentifier?: string | undefined;
1335
1401
  EventBridgeRuleTemplateGroupIdentifier?: string | undefined;
@@ -1739,6 +1805,7 @@ export interface UpdateInputRequest {
1739
1805
  SrtSettings?: SrtSettingsRequest | undefined;
1740
1806
  MulticastSettings?: MulticastSettingsUpdateRequest | undefined;
1741
1807
  Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
1808
+ SdiSources?: string[] | undefined;
1742
1809
  }
1743
1810
  export interface UpdateInputResponse {
1744
1811
  Input?: Input | undefined;
@@ -1810,11 +1877,17 @@ export interface UpdateNetworkResponse {
1810
1877
  Routes?: Route[] | undefined;
1811
1878
  State?: NetworkState | undefined;
1812
1879
  }
1880
+ export interface SdiSourceMappingUpdateRequest {
1881
+ CardNumber?: number | undefined;
1882
+ ChannelNumber?: number | undefined;
1883
+ SdiSource?: string | undefined;
1884
+ }
1813
1885
  export interface UpdateNodeRequest {
1814
1886
  ClusterId: string | undefined;
1815
1887
  Name?: string | undefined;
1816
1888
  NodeId: string | undefined;
1817
1889
  Role?: NodeRole | undefined;
1890
+ SdiSourceMappings?: SdiSourceMappingUpdateRequest[] | undefined;
1818
1891
  }
1819
1892
  export interface UpdateNodeResponse {
1820
1893
  Arn?: string | undefined;
@@ -1827,6 +1900,7 @@ export interface UpdateNodeResponse {
1827
1900
  NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
1828
1901
  Role?: NodeRole | undefined;
1829
1902
  State?: NodeState | undefined;
1903
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
1830
1904
  }
1831
1905
  export declare const UpdateNodeStateShape: {
1832
1906
  readonly ACTIVE: "ACTIVE";
@@ -1850,6 +1924,7 @@ export interface UpdateNodeStateResponse {
1850
1924
  NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
1851
1925
  Role?: NodeRole | undefined;
1852
1926
  State?: NodeState | undefined;
1927
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
1853
1928
  }
1854
1929
  export interface UpdateReservationRequest {
1855
1930
  Name?: string | undefined;
@@ -1859,6 +1934,15 @@ export interface UpdateReservationRequest {
1859
1934
  export interface UpdateReservationResponse {
1860
1935
  Reservation?: Reservation | undefined;
1861
1936
  }
1937
+ export interface UpdateSdiSourceRequest {
1938
+ Mode?: SdiSourceMode | undefined;
1939
+ Name?: string | undefined;
1940
+ SdiSourceId: string | undefined;
1941
+ Type?: SdiSourceType | undefined;
1942
+ }
1943
+ export interface UpdateSdiSourceResponse {
1944
+ SdiSource?: SdiSource | undefined;
1945
+ }
1862
1946
  export declare const DescribeInputDeviceThumbnailResponseFilterSensitiveLog: (
1863
1947
  obj: DescribeInputDeviceThumbnailResponse
1864
1948
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListSdiSourcesCommandInput,
4
+ ListSdiSourcesCommandOutput,
5
+ } from "../commands/ListSdiSourcesCommand";
6
+ import { MediaLivePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListSdiSources: (
8
+ config: MediaLivePaginationConfiguration,
9
+ input: ListSdiSourcesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListSdiSourcesCommandOutput>;
@@ -17,4 +17,5 @@ export * from "./ListNetworksPaginator";
17
17
  export * from "./ListNodesPaginator";
18
18
  export * from "./ListOfferingsPaginator";
19
19
  export * from "./ListReservationsPaginator";
20
+ export * from "./ListSdiSourcesPaginator";
20
21
  export * from "./ListSignalMapsPaginator";
@@ -94,6 +94,10 @@ import {
94
94
  CreatePartnerInputCommandInput,
95
95
  CreatePartnerInputCommandOutput,
96
96
  } from "../commands/CreatePartnerInputCommand";
97
+ import {
98
+ CreateSdiSourceCommandInput,
99
+ CreateSdiSourceCommandOutput,
100
+ } from "../commands/CreateSdiSourceCommand";
97
101
  import {
98
102
  CreateSignalMapCommandInput,
99
103
  CreateSignalMapCommandOutput,
@@ -162,6 +166,10 @@ import {
162
166
  DeleteScheduleCommandInput,
163
167
  DeleteScheduleCommandOutput,
164
168
  } from "../commands/DeleteScheduleCommand";
169
+ import {
170
+ DeleteSdiSourceCommandInput,
171
+ DeleteSdiSourceCommandOutput,
172
+ } from "../commands/DeleteSdiSourceCommand";
165
173
  import {
166
174
  DeleteSignalMapCommandInput,
167
175
  DeleteSignalMapCommandOutput,
@@ -230,6 +238,10 @@ import {
230
238
  DescribeScheduleCommandInput,
231
239
  DescribeScheduleCommandOutput,
232
240
  } from "../commands/DescribeScheduleCommand";
241
+ import {
242
+ DescribeSdiSourceCommandInput,
243
+ DescribeSdiSourceCommandOutput,
244
+ } from "../commands/DescribeSdiSourceCommand";
233
245
  import {
234
246
  DescribeThumbnailsCommandInput,
235
247
  DescribeThumbnailsCommandOutput,
@@ -322,6 +334,10 @@ import {
322
334
  ListReservationsCommandInput,
323
335
  ListReservationsCommandOutput,
324
336
  } from "../commands/ListReservationsCommand";
337
+ import {
338
+ ListSdiSourcesCommandInput,
339
+ ListSdiSourcesCommandOutput,
340
+ } from "../commands/ListSdiSourcesCommand";
325
341
  import {
326
342
  ListSignalMapsCommandInput,
327
343
  ListSignalMapsCommandOutput,
@@ -466,6 +482,10 @@ import {
466
482
  UpdateReservationCommandInput,
467
483
  UpdateReservationCommandOutput,
468
484
  } from "../commands/UpdateReservationCommand";
485
+ import {
486
+ UpdateSdiSourceCommandInput,
487
+ UpdateSdiSourceCommandOutput,
488
+ } from "../commands/UpdateSdiSourceCommand";
469
489
  export declare const se_AcceptInputDeviceTransferCommand: (
470
490
  input: AcceptInputDeviceTransferCommandInput,
471
491
  context: __SerdeContext
@@ -554,6 +574,10 @@ export declare const se_CreatePartnerInputCommand: (
554
574
  input: CreatePartnerInputCommandInput,
555
575
  context: __SerdeContext
556
576
  ) => Promise<__HttpRequest>;
577
+ export declare const se_CreateSdiSourceCommand: (
578
+ input: CreateSdiSourceCommandInput,
579
+ context: __SerdeContext
580
+ ) => Promise<__HttpRequest>;
557
581
  export declare const se_CreateSignalMapCommand: (
558
582
  input: CreateSignalMapCommandInput,
559
583
  context: __SerdeContext
@@ -622,6 +646,10 @@ export declare const se_DeleteScheduleCommand: (
622
646
  input: DeleteScheduleCommandInput,
623
647
  context: __SerdeContext
624
648
  ) => Promise<__HttpRequest>;
649
+ export declare const se_DeleteSdiSourceCommand: (
650
+ input: DeleteSdiSourceCommandInput,
651
+ context: __SerdeContext
652
+ ) => Promise<__HttpRequest>;
625
653
  export declare const se_DeleteSignalMapCommand: (
626
654
  input: DeleteSignalMapCommandInput,
627
655
  context: __SerdeContext
@@ -690,6 +718,10 @@ export declare const se_DescribeScheduleCommand: (
690
718
  input: DescribeScheduleCommandInput,
691
719
  context: __SerdeContext
692
720
  ) => Promise<__HttpRequest>;
721
+ export declare const se_DescribeSdiSourceCommand: (
722
+ input: DescribeSdiSourceCommandInput,
723
+ context: __SerdeContext
724
+ ) => Promise<__HttpRequest>;
693
725
  export declare const se_DescribeThumbnailsCommand: (
694
726
  input: DescribeThumbnailsCommandInput,
695
727
  context: __SerdeContext
@@ -782,6 +814,10 @@ export declare const se_ListReservationsCommand: (
782
814
  input: ListReservationsCommandInput,
783
815
  context: __SerdeContext
784
816
  ) => Promise<__HttpRequest>;
817
+ export declare const se_ListSdiSourcesCommand: (
818
+ input: ListSdiSourcesCommandInput,
819
+ context: __SerdeContext
820
+ ) => Promise<__HttpRequest>;
785
821
  export declare const se_ListSignalMapsCommand: (
786
822
  input: ListSignalMapsCommandInput,
787
823
  context: __SerdeContext
@@ -926,6 +962,10 @@ export declare const se_UpdateReservationCommand: (
926
962
  input: UpdateReservationCommandInput,
927
963
  context: __SerdeContext
928
964
  ) => Promise<__HttpRequest>;
965
+ export declare const se_UpdateSdiSourceCommand: (
966
+ input: UpdateSdiSourceCommandInput,
967
+ context: __SerdeContext
968
+ ) => Promise<__HttpRequest>;
929
969
  export declare const de_AcceptInputDeviceTransferCommand: (
930
970
  output: __HttpResponse,
931
971
  context: __SerdeContext
@@ -1014,6 +1054,10 @@ export declare const de_CreatePartnerInputCommand: (
1014
1054
  output: __HttpResponse,
1015
1055
  context: __SerdeContext
1016
1056
  ) => Promise<CreatePartnerInputCommandOutput>;
1057
+ export declare const de_CreateSdiSourceCommand: (
1058
+ output: __HttpResponse,
1059
+ context: __SerdeContext
1060
+ ) => Promise<CreateSdiSourceCommandOutput>;
1017
1061
  export declare const de_CreateSignalMapCommand: (
1018
1062
  output: __HttpResponse,
1019
1063
  context: __SerdeContext
@@ -1082,6 +1126,10 @@ export declare const de_DeleteScheduleCommand: (
1082
1126
  output: __HttpResponse,
1083
1127
  context: __SerdeContext
1084
1128
  ) => Promise<DeleteScheduleCommandOutput>;
1129
+ export declare const de_DeleteSdiSourceCommand: (
1130
+ output: __HttpResponse,
1131
+ context: __SerdeContext
1132
+ ) => Promise<DeleteSdiSourceCommandOutput>;
1085
1133
  export declare const de_DeleteSignalMapCommand: (
1086
1134
  output: __HttpResponse,
1087
1135
  context: __SerdeContext
@@ -1150,6 +1198,10 @@ export declare const de_DescribeScheduleCommand: (
1150
1198
  output: __HttpResponse,
1151
1199
  context: __SerdeContext
1152
1200
  ) => Promise<DescribeScheduleCommandOutput>;
1201
+ export declare const de_DescribeSdiSourceCommand: (
1202
+ output: __HttpResponse,
1203
+ context: __SerdeContext
1204
+ ) => Promise<DescribeSdiSourceCommandOutput>;
1153
1205
  export declare const de_DescribeThumbnailsCommand: (
1154
1206
  output: __HttpResponse,
1155
1207
  context: __SerdeContext
@@ -1242,6 +1294,10 @@ export declare const de_ListReservationsCommand: (
1242
1294
  output: __HttpResponse,
1243
1295
  context: __SerdeContext
1244
1296
  ) => Promise<ListReservationsCommandOutput>;
1297
+ export declare const de_ListSdiSourcesCommand: (
1298
+ output: __HttpResponse,
1299
+ context: __SerdeContext
1300
+ ) => Promise<ListSdiSourcesCommandOutput>;
1245
1301
  export declare const de_ListSignalMapsCommand: (
1246
1302
  output: __HttpResponse,
1247
1303
  context: __SerdeContext
@@ -1386,3 +1442,7 @@ export declare const de_UpdateReservationCommand: (
1386
1442
  output: __HttpResponse,
1387
1443
  context: __SerdeContext
1388
1444
  ) => Promise<UpdateReservationCommandOutput>;
1445
+ export declare const de_UpdateSdiSourceCommand: (
1446
+ output: __HttpResponse,
1447
+ context: __SerdeContext
1448
+ ) => Promise<UpdateSdiSourceCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-medialive",
3
3
  "description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
4
- "version": "3.781.0",
4
+ "version": "3.784.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-medialive",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.775.0",
24
- "@aws-sdk/credential-provider-node": "3.777.0",
24
+ "@aws-sdk/credential-provider-node": "3.782.0",
25
25
  "@aws-sdk/middleware-host-header": "3.775.0",
26
26
  "@aws-sdk/middleware-logger": "3.775.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
- "@aws-sdk/middleware-user-agent": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.782.0",
29
29
  "@aws-sdk/region-config-resolver": "3.775.0",
30
30
  "@aws-sdk/types": "3.775.0",
31
- "@aws-sdk/util-endpoints": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.782.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.775.0",
33
- "@aws-sdk/util-user-agent-node": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.782.0",
34
34
  "@smithy/config-resolver": "^4.1.0",
35
35
  "@smithy/core": "^3.2.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",