@@ -88,6 +88,11 @@ import {
88
88
CreatePartnerInputCommandInput ,
89
89
CreatePartnerInputCommandOutput ,
90
90
} from "./commands/CreatePartnerInputCommand" ;
91
+ import {
92
+ CreateSdiSourceCommand ,
93
+ CreateSdiSourceCommandInput ,
94
+ CreateSdiSourceCommandOutput ,
95
+ } from "./commands/CreateSdiSourceCommand" ;
91
96
import {
92
97
CreateSignalMapCommand ,
93
98
CreateSignalMapCommandInput ,
@@ -161,6 +166,11 @@ import {
161
166
DeleteScheduleCommandInput ,
162
167
DeleteScheduleCommandOutput ,
163
168
} from "./commands/DeleteScheduleCommand" ;
169
+ import {
170
+ DeleteSdiSourceCommand ,
171
+ DeleteSdiSourceCommandInput ,
172
+ DeleteSdiSourceCommandOutput ,
173
+ } from "./commands/DeleteSdiSourceCommand" ;
164
174
import {
165
175
DeleteSignalMapCommand ,
166
176
DeleteSignalMapCommandInput ,
@@ -242,6 +252,11 @@ import {
242
252
DescribeScheduleCommandInput ,
243
253
DescribeScheduleCommandOutput ,
244
254
} from "./commands/DescribeScheduleCommand" ;
255
+ import {
256
+ DescribeSdiSourceCommand ,
257
+ DescribeSdiSourceCommandInput ,
258
+ DescribeSdiSourceCommandOutput ,
259
+ } from "./commands/DescribeSdiSourceCommand" ;
245
260
import {
246
261
DescribeThumbnailsCommand ,
247
262
DescribeThumbnailsCommandInput ,
@@ -349,6 +364,11 @@ import {
349
364
ListReservationsCommandInput ,
350
365
ListReservationsCommandOutput ,
351
366
} from "./commands/ListReservationsCommand" ;
367
+ import {
368
+ ListSdiSourcesCommand ,
369
+ ListSdiSourcesCommandInput ,
370
+ ListSdiSourcesCommandOutput ,
371
+ } from "./commands/ListSdiSourcesCommand" ;
352
372
import {
353
373
ListSignalMapsCommand ,
354
374
ListSignalMapsCommandInput ,
@@ -517,6 +537,11 @@ import {
517
537
UpdateReservationCommandInput ,
518
538
UpdateReservationCommandOutput ,
519
539
} from "./commands/UpdateReservationCommand" ;
540
+ import {
541
+ UpdateSdiSourceCommand ,
542
+ UpdateSdiSourceCommandInput ,
543
+ UpdateSdiSourceCommandOutput ,
544
+ } from "./commands/UpdateSdiSourceCommand" ;
520
545
import { MediaLiveClient , MediaLiveClientConfig } from "./MediaLiveClient" ;
521
546
522
547
const commands = {
@@ -542,6 +567,7 @@ const commands = {
542
567
CreateNodeCommand,
543
568
CreateNodeRegistrationScriptCommand,
544
569
CreatePartnerInputCommand,
570
+ CreateSdiSourceCommand,
545
571
CreateSignalMapCommand,
546
572
CreateTagsCommand,
547
573
DeleteChannelCommand,
@@ -559,6 +585,7 @@ const commands = {
559
585
DeleteNodeCommand,
560
586
DeleteReservationCommand,
561
587
DeleteScheduleCommand,
588
+ DeleteSdiSourceCommand,
562
589
DeleteSignalMapCommand,
563
590
DeleteTagsCommand,
564
591
DescribeAccountConfigurationCommand,
@@ -576,6 +603,7 @@ const commands = {
576
603
DescribeOfferingCommand,
577
604
DescribeReservationCommand,
578
605
DescribeScheduleCommand,
606
+ DescribeSdiSourceCommand,
579
607
DescribeThumbnailsCommand,
580
608
GetCloudWatchAlarmTemplateCommand,
581
609
GetCloudWatchAlarmTemplateGroupCommand,
@@ -599,6 +627,7 @@ const commands = {
599
627
ListNodesCommand,
600
628
ListOfferingsCommand,
601
629
ListReservationsCommand,
630
+ ListSdiSourcesCommand,
602
631
ListSignalMapsCommand,
603
632
ListTagsForResourceCommand,
604
633
ListVersionsCommand,
@@ -635,6 +664,7 @@ const commands = {
635
664
UpdateNodeCommand,
636
665
UpdateNodeStateCommand,
637
666
UpdateReservationCommand,
667
+ UpdateSdiSourceCommand,
638
668
} ;
639
669
640
670
export interface MediaLive {
@@ -964,6 +994,21 @@ export interface MediaLive {
964
994
cb : ( err : any , data ?: CreatePartnerInputCommandOutput ) => void
965
995
) : void ;
966
996
997
+ /**
998
+ * @see {@link CreateSdiSourceCommand }
999
+ */
1000
+ createSdiSource ( ) : Promise < CreateSdiSourceCommandOutput > ;
1001
+ createSdiSource (
1002
+ args : CreateSdiSourceCommandInput ,
1003
+ options ?: __HttpHandlerOptions
1004
+ ) : Promise < CreateSdiSourceCommandOutput > ;
1005
+ createSdiSource ( args : CreateSdiSourceCommandInput , cb : ( err : any , data ?: CreateSdiSourceCommandOutput ) => void ) : void ;
1006
+ createSdiSource (
1007
+ args : CreateSdiSourceCommandInput ,
1008
+ options : __HttpHandlerOptions ,
1009
+ cb : ( err : any , data ?: CreateSdiSourceCommandOutput ) => void
1010
+ ) : void ;
1011
+
967
1012
/**
968
1013
* @see {@link CreateSignalMapCommand }
969
1014
*/
@@ -1208,6 +1253,20 @@ export interface MediaLive {
1208
1253
cb : ( err : any , data ?: DeleteScheduleCommandOutput ) => void
1209
1254
) : void ;
1210
1255
1256
+ /**
1257
+ * @see {@link DeleteSdiSourceCommand }
1258
+ */
1259
+ deleteSdiSource (
1260
+ args : DeleteSdiSourceCommandInput ,
1261
+ options ?: __HttpHandlerOptions
1262
+ ) : Promise < DeleteSdiSourceCommandOutput > ;
1263
+ deleteSdiSource ( args : DeleteSdiSourceCommandInput , cb : ( err : any , data ?: DeleteSdiSourceCommandOutput ) => void ) : void ;
1264
+ deleteSdiSource (
1265
+ args : DeleteSdiSourceCommandInput ,
1266
+ options : __HttpHandlerOptions ,
1267
+ cb : ( err : any , data ?: DeleteSdiSourceCommandOutput ) => void
1268
+ ) : void ;
1269
+
1211
1270
/**
1212
1271
* @see {@link DeleteSignalMapCommand }
1213
1272
*/
@@ -1468,6 +1527,23 @@ export interface MediaLive {
1468
1527
cb : ( err : any , data ?: DescribeScheduleCommandOutput ) => void
1469
1528
) : void ;
1470
1529
1530
+ /**
1531
+ * @see {@link DescribeSdiSourceCommand }
1532
+ */
1533
+ describeSdiSource (
1534
+ args : DescribeSdiSourceCommandInput ,
1535
+ options ?: __HttpHandlerOptions
1536
+ ) : Promise < DescribeSdiSourceCommandOutput > ;
1537
+ describeSdiSource (
1538
+ args : DescribeSdiSourceCommandInput ,
1539
+ cb : ( err : any , data ?: DescribeSdiSourceCommandOutput ) => void
1540
+ ) : void ;
1541
+ describeSdiSource (
1542
+ args : DescribeSdiSourceCommandInput ,
1543
+ options : __HttpHandlerOptions ,
1544
+ cb : ( err : any , data ?: DescribeSdiSourceCommandOutput ) => void
1545
+ ) : void ;
1546
+
1471
1547
/**
1472
1548
* @see {@link DescribeThumbnailsCommand }
1473
1549
*/
@@ -1827,6 +1903,21 @@ export interface MediaLive {
1827
1903
cb : ( err : any , data ?: ListReservationsCommandOutput ) => void
1828
1904
) : void ;
1829
1905
1906
+ /**
1907
+ * @see {@link ListSdiSourcesCommand }
1908
+ */
1909
+ listSdiSources ( ) : Promise < ListSdiSourcesCommandOutput > ;
1910
+ listSdiSources (
1911
+ args : ListSdiSourcesCommandInput ,
1912
+ options ?: __HttpHandlerOptions
1913
+ ) : Promise < ListSdiSourcesCommandOutput > ;
1914
+ listSdiSources ( args : ListSdiSourcesCommandInput , cb : ( err : any , data ?: ListSdiSourcesCommandOutput ) => void ) : void ;
1915
+ listSdiSources (
1916
+ args : ListSdiSourcesCommandInput ,
1917
+ options : __HttpHandlerOptions ,
1918
+ cb : ( err : any , data ?: ListSdiSourcesCommandOutput ) => void
1919
+ ) : void ;
1920
+
1830
1921
/**
1831
1922
* @see {@link ListSignalMapsCommand }
1832
1923
*/
@@ -2372,6 +2463,20 @@ export interface MediaLive {
2372
2463
options : __HttpHandlerOptions ,
2373
2464
cb : ( err : any , data ?: UpdateReservationCommandOutput ) => void
2374
2465
) : void ;
2466
+
2467
+ /**
2468
+ * @see {@link UpdateSdiSourceCommand }
2469
+ */
2470
+ updateSdiSource (
2471
+ args : UpdateSdiSourceCommandInput ,
2472
+ options ?: __HttpHandlerOptions
2473
+ ) : Promise < UpdateSdiSourceCommandOutput > ;
2474
+ updateSdiSource ( args : UpdateSdiSourceCommandInput , cb : ( err : any , data ?: UpdateSdiSourceCommandOutput ) => void ) : void ;
2475
+ updateSdiSource (
2476
+ args : UpdateSdiSourceCommandInput ,
2477
+ options : __HttpHandlerOptions ,
2478
+ cb : ( err : any , data ?: UpdateSdiSourceCommandOutput ) => void
2479
+ ) : void ;
2375
2480
}
2376
2481
2377
2482
/**
0 commit comments