types-boto3-medialive 1.37.26__py3-none-any.whl → 1.37.29__py3-none-any.whl
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.
- types_boto3_medialive/__init__.py +4 -0
- types_boto3_medialive/__init__.pyi +4 -0
- types_boto3_medialive/__main__.py +3 -3
- types_boto3_medialive/client.py +72 -0
- types_boto3_medialive/client.pyi +72 -0
- types_boto3_medialive/literals.py +10 -0
- types_boto3_medialive/literals.pyi +10 -0
- types_boto3_medialive/paginator.py +26 -0
- types_boto3_medialive/paginator.pyi +23 -0
- types_boto3_medialive/type_defs.py +147 -14
- types_boto3_medialive/type_defs.pyi +132 -13
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.37.26.dist-info → types_boto3_medialive-1.37.29.dist-info}/METADATA +6 -4
- types_boto3_medialive-1.37.29.dist-info/RECORD +20 -0
- types_boto3_medialive-1.37.26.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.37.26.dist-info → types_boto3_medialive-1.37.29.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.37.26.dist-info → types_boto3_medialive-1.37.29.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.37.26.dist-info → types_boto3_medialive-1.37.29.dist-info}/top_level.txt +0 -0
|
@@ -41,6 +41,7 @@ Usage::
|
|
|
41
41
|
ListNodesPaginator,
|
|
42
42
|
ListOfferingsPaginator,
|
|
43
43
|
ListReservationsPaginator,
|
|
44
|
+
ListSdiSourcesPaginator,
|
|
44
45
|
ListSignalMapsPaginator,
|
|
45
46
|
MediaLiveClient,
|
|
46
47
|
MultiplexCreatedWaiter,
|
|
@@ -99,6 +100,7 @@ Usage::
|
|
|
99
100
|
list_nodes_paginator: ListNodesPaginator = client.get_paginator("list_nodes")
|
|
100
101
|
list_offerings_paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")
|
|
101
102
|
list_reservations_paginator: ListReservationsPaginator = client.get_paginator("list_reservations")
|
|
103
|
+
list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator("list_sdi_sources")
|
|
102
104
|
list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")
|
|
103
105
|
```
|
|
104
106
|
"""
|
|
@@ -123,6 +125,7 @@ from .paginator import (
|
|
|
123
125
|
ListNodesPaginator,
|
|
124
126
|
ListOfferingsPaginator,
|
|
125
127
|
ListReservationsPaginator,
|
|
128
|
+
ListSdiSourcesPaginator,
|
|
126
129
|
ListSignalMapsPaginator,
|
|
127
130
|
)
|
|
128
131
|
from .waiter import (
|
|
@@ -185,6 +188,7 @@ __all__ = (
|
|
|
185
188
|
"ListNodesPaginator",
|
|
186
189
|
"ListOfferingsPaginator",
|
|
187
190
|
"ListReservationsPaginator",
|
|
191
|
+
"ListSdiSourcesPaginator",
|
|
188
192
|
"ListSignalMapsPaginator",
|
|
189
193
|
"MediaLiveClient",
|
|
190
194
|
"MultiplexCreatedWaiter",
|
|
@@ -41,6 +41,7 @@ Usage::
|
|
|
41
41
|
ListNodesPaginator,
|
|
42
42
|
ListOfferingsPaginator,
|
|
43
43
|
ListReservationsPaginator,
|
|
44
|
+
ListSdiSourcesPaginator,
|
|
44
45
|
ListSignalMapsPaginator,
|
|
45
46
|
MediaLiveClient,
|
|
46
47
|
MultiplexCreatedWaiter,
|
|
@@ -99,6 +100,7 @@ Usage::
|
|
|
99
100
|
list_nodes_paginator: ListNodesPaginator = client.get_paginator("list_nodes")
|
|
100
101
|
list_offerings_paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")
|
|
101
102
|
list_reservations_paginator: ListReservationsPaginator = client.get_paginator("list_reservations")
|
|
103
|
+
list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator("list_sdi_sources")
|
|
102
104
|
list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")
|
|
103
105
|
```
|
|
104
106
|
"""
|
|
@@ -123,6 +125,7 @@ from .paginator import (
|
|
|
123
125
|
ListNodesPaginator,
|
|
124
126
|
ListOfferingsPaginator,
|
|
125
127
|
ListReservationsPaginator,
|
|
128
|
+
ListSdiSourcesPaginator,
|
|
126
129
|
ListSignalMapsPaginator,
|
|
127
130
|
)
|
|
128
131
|
from .waiter import (
|
|
@@ -184,6 +187,7 @@ __all__ = (
|
|
|
184
187
|
"ListNodesPaginator",
|
|
185
188
|
"ListOfferingsPaginator",
|
|
186
189
|
"ListReservationsPaginator",
|
|
190
|
+
"ListSdiSourcesPaginator",
|
|
187
191
|
"ListSignalMapsPaginator",
|
|
188
192
|
"MediaLiveClient",
|
|
189
193
|
"MultiplexCreatedWaiter",
|
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 MediaLive 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 MediaLive 1.37.29\n"
|
|
16
|
+
"Version: 1.37.29\n"
|
|
17
17
|
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_medialive//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive.html#medialive\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.29\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_medialive/client.py
CHANGED
|
@@ -44,6 +44,7 @@ from .paginator import (
|
|
|
44
44
|
ListNodesPaginator,
|
|
45
45
|
ListOfferingsPaginator,
|
|
46
46
|
ListReservationsPaginator,
|
|
47
|
+
ListSdiSourcesPaginator,
|
|
47
48
|
ListSignalMapsPaginator,
|
|
48
49
|
)
|
|
49
50
|
from .type_defs import (
|
|
@@ -88,6 +89,8 @@ from .type_defs import (
|
|
|
88
89
|
CreateNodeResponseTypeDef,
|
|
89
90
|
CreatePartnerInputRequestTypeDef,
|
|
90
91
|
CreatePartnerInputResponseTypeDef,
|
|
92
|
+
CreateSdiSourceRequestTypeDef,
|
|
93
|
+
CreateSdiSourceResponseTypeDef,
|
|
91
94
|
CreateSignalMapRequestTypeDef,
|
|
92
95
|
CreateSignalMapResponseTypeDef,
|
|
93
96
|
CreateTagsRequestTypeDef,
|
|
@@ -114,6 +117,8 @@ from .type_defs import (
|
|
|
114
117
|
DeleteReservationRequestTypeDef,
|
|
115
118
|
DeleteReservationResponseTypeDef,
|
|
116
119
|
DeleteScheduleRequestTypeDef,
|
|
120
|
+
DeleteSdiSourceRequestTypeDef,
|
|
121
|
+
DeleteSdiSourceResponseTypeDef,
|
|
117
122
|
DeleteSignalMapRequestTypeDef,
|
|
118
123
|
DeleteTagsRequestTypeDef,
|
|
119
124
|
DescribeAccountConfigurationResponseTypeDef,
|
|
@@ -145,6 +150,8 @@ from .type_defs import (
|
|
|
145
150
|
DescribeReservationResponseTypeDef,
|
|
146
151
|
DescribeScheduleRequestTypeDef,
|
|
147
152
|
DescribeScheduleResponseTypeDef,
|
|
153
|
+
DescribeSdiSourceRequestTypeDef,
|
|
154
|
+
DescribeSdiSourceResponseTypeDef,
|
|
148
155
|
DescribeThumbnailsRequestTypeDef,
|
|
149
156
|
DescribeThumbnailsResponseTypeDef,
|
|
150
157
|
EmptyResponseMetadataTypeDef,
|
|
@@ -192,6 +199,8 @@ from .type_defs import (
|
|
|
192
199
|
ListOfferingsResponseTypeDef,
|
|
193
200
|
ListReservationsRequestTypeDef,
|
|
194
201
|
ListReservationsResponseTypeDef,
|
|
202
|
+
ListSdiSourcesRequestTypeDef,
|
|
203
|
+
ListSdiSourcesResponseTypeDef,
|
|
195
204
|
ListSignalMapsRequestTypeDef,
|
|
196
205
|
ListSignalMapsResponseTypeDef,
|
|
197
206
|
ListTagsForResourceRequestTypeDef,
|
|
@@ -257,6 +266,8 @@ from .type_defs import (
|
|
|
257
266
|
UpdateNodeStateResponseTypeDef,
|
|
258
267
|
UpdateReservationRequestTypeDef,
|
|
259
268
|
UpdateReservationResponseTypeDef,
|
|
269
|
+
UpdateSdiSourceRequestTypeDef,
|
|
270
|
+
UpdateSdiSourceResponseTypeDef,
|
|
260
271
|
)
|
|
261
272
|
from .waiter import (
|
|
262
273
|
ChannelCreatedWaiter,
|
|
@@ -1478,6 +1489,56 @@ class MediaLiveClient(BaseClient):
|
|
|
1478
1489
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_versions)
|
|
1479
1490
|
"""
|
|
1480
1491
|
|
|
1492
|
+
def create_sdi_source(
|
|
1493
|
+
self, **kwargs: Unpack[CreateSdiSourceRequestTypeDef]
|
|
1494
|
+
) -> CreateSdiSourceResponseTypeDef:
|
|
1495
|
+
"""
|
|
1496
|
+
Create an SdiSource for each video source that uses the SDI protocol.
|
|
1497
|
+
|
|
1498
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/create_sdi_source.html)
|
|
1499
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#create_sdi_source)
|
|
1500
|
+
"""
|
|
1501
|
+
|
|
1502
|
+
def delete_sdi_source(
|
|
1503
|
+
self, **kwargs: Unpack[DeleteSdiSourceRequestTypeDef]
|
|
1504
|
+
) -> DeleteSdiSourceResponseTypeDef:
|
|
1505
|
+
"""
|
|
1506
|
+
Delete an SdiSource.
|
|
1507
|
+
|
|
1508
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/delete_sdi_source.html)
|
|
1509
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_sdi_source)
|
|
1510
|
+
"""
|
|
1511
|
+
|
|
1512
|
+
def describe_sdi_source(
|
|
1513
|
+
self, **kwargs: Unpack[DescribeSdiSourceRequestTypeDef]
|
|
1514
|
+
) -> DescribeSdiSourceResponseTypeDef:
|
|
1515
|
+
"""
|
|
1516
|
+
Gets details about a SdiSource.
|
|
1517
|
+
|
|
1518
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/describe_sdi_source.html)
|
|
1519
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#describe_sdi_source)
|
|
1520
|
+
"""
|
|
1521
|
+
|
|
1522
|
+
def list_sdi_sources(
|
|
1523
|
+
self, **kwargs: Unpack[ListSdiSourcesRequestTypeDef]
|
|
1524
|
+
) -> ListSdiSourcesResponseTypeDef:
|
|
1525
|
+
"""
|
|
1526
|
+
List all the SdiSources in the AWS account.
|
|
1527
|
+
|
|
1528
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_sdi_sources.html)
|
|
1529
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_sdi_sources)
|
|
1530
|
+
"""
|
|
1531
|
+
|
|
1532
|
+
def update_sdi_source(
|
|
1533
|
+
self, **kwargs: Unpack[UpdateSdiSourceRequestTypeDef]
|
|
1534
|
+
) -> UpdateSdiSourceResponseTypeDef:
|
|
1535
|
+
"""
|
|
1536
|
+
Change some of the settings in an SdiSource.
|
|
1537
|
+
|
|
1538
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/update_sdi_source.html)
|
|
1539
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#update_sdi_source)
|
|
1540
|
+
"""
|
|
1541
|
+
|
|
1481
1542
|
@overload # type: ignore[override]
|
|
1482
1543
|
def get_paginator( # type: ignore[override]
|
|
1483
1544
|
self, operation_name: Literal["describe_schedule"]
|
|
@@ -1676,6 +1737,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1676
1737
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1677
1738
|
"""
|
|
1678
1739
|
|
|
1740
|
+
@overload # type: ignore[override]
|
|
1741
|
+
def get_paginator( # type: ignore[override]
|
|
1742
|
+
self, operation_name: Literal["list_sdi_sources"]
|
|
1743
|
+
) -> ListSdiSourcesPaginator:
|
|
1744
|
+
"""
|
|
1745
|
+
Create a paginator for an operation.
|
|
1746
|
+
|
|
1747
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1748
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1749
|
+
"""
|
|
1750
|
+
|
|
1679
1751
|
@overload # type: ignore[override]
|
|
1680
1752
|
def get_paginator( # type: ignore[override]
|
|
1681
1753
|
self, operation_name: Literal["list_signal_maps"]
|
types_boto3_medialive/client.pyi
CHANGED
|
@@ -44,6 +44,7 @@ from .paginator import (
|
|
|
44
44
|
ListNodesPaginator,
|
|
45
45
|
ListOfferingsPaginator,
|
|
46
46
|
ListReservationsPaginator,
|
|
47
|
+
ListSdiSourcesPaginator,
|
|
47
48
|
ListSignalMapsPaginator,
|
|
48
49
|
)
|
|
49
50
|
from .type_defs import (
|
|
@@ -88,6 +89,8 @@ from .type_defs import (
|
|
|
88
89
|
CreateNodeResponseTypeDef,
|
|
89
90
|
CreatePartnerInputRequestTypeDef,
|
|
90
91
|
CreatePartnerInputResponseTypeDef,
|
|
92
|
+
CreateSdiSourceRequestTypeDef,
|
|
93
|
+
CreateSdiSourceResponseTypeDef,
|
|
91
94
|
CreateSignalMapRequestTypeDef,
|
|
92
95
|
CreateSignalMapResponseTypeDef,
|
|
93
96
|
CreateTagsRequestTypeDef,
|
|
@@ -114,6 +117,8 @@ from .type_defs import (
|
|
|
114
117
|
DeleteReservationRequestTypeDef,
|
|
115
118
|
DeleteReservationResponseTypeDef,
|
|
116
119
|
DeleteScheduleRequestTypeDef,
|
|
120
|
+
DeleteSdiSourceRequestTypeDef,
|
|
121
|
+
DeleteSdiSourceResponseTypeDef,
|
|
117
122
|
DeleteSignalMapRequestTypeDef,
|
|
118
123
|
DeleteTagsRequestTypeDef,
|
|
119
124
|
DescribeAccountConfigurationResponseTypeDef,
|
|
@@ -145,6 +150,8 @@ from .type_defs import (
|
|
|
145
150
|
DescribeReservationResponseTypeDef,
|
|
146
151
|
DescribeScheduleRequestTypeDef,
|
|
147
152
|
DescribeScheduleResponseTypeDef,
|
|
153
|
+
DescribeSdiSourceRequestTypeDef,
|
|
154
|
+
DescribeSdiSourceResponseTypeDef,
|
|
148
155
|
DescribeThumbnailsRequestTypeDef,
|
|
149
156
|
DescribeThumbnailsResponseTypeDef,
|
|
150
157
|
EmptyResponseMetadataTypeDef,
|
|
@@ -192,6 +199,8 @@ from .type_defs import (
|
|
|
192
199
|
ListOfferingsResponseTypeDef,
|
|
193
200
|
ListReservationsRequestTypeDef,
|
|
194
201
|
ListReservationsResponseTypeDef,
|
|
202
|
+
ListSdiSourcesRequestTypeDef,
|
|
203
|
+
ListSdiSourcesResponseTypeDef,
|
|
195
204
|
ListSignalMapsRequestTypeDef,
|
|
196
205
|
ListSignalMapsResponseTypeDef,
|
|
197
206
|
ListTagsForResourceRequestTypeDef,
|
|
@@ -257,6 +266,8 @@ from .type_defs import (
|
|
|
257
266
|
UpdateNodeStateResponseTypeDef,
|
|
258
267
|
UpdateReservationRequestTypeDef,
|
|
259
268
|
UpdateReservationResponseTypeDef,
|
|
269
|
+
UpdateSdiSourceRequestTypeDef,
|
|
270
|
+
UpdateSdiSourceResponseTypeDef,
|
|
260
271
|
)
|
|
261
272
|
from .waiter import (
|
|
262
273
|
ChannelCreatedWaiter,
|
|
@@ -1475,6 +1486,56 @@ class MediaLiveClient(BaseClient):
|
|
|
1475
1486
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_versions)
|
|
1476
1487
|
"""
|
|
1477
1488
|
|
|
1489
|
+
def create_sdi_source(
|
|
1490
|
+
self, **kwargs: Unpack[CreateSdiSourceRequestTypeDef]
|
|
1491
|
+
) -> CreateSdiSourceResponseTypeDef:
|
|
1492
|
+
"""
|
|
1493
|
+
Create an SdiSource for each video source that uses the SDI protocol.
|
|
1494
|
+
|
|
1495
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/create_sdi_source.html)
|
|
1496
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#create_sdi_source)
|
|
1497
|
+
"""
|
|
1498
|
+
|
|
1499
|
+
def delete_sdi_source(
|
|
1500
|
+
self, **kwargs: Unpack[DeleteSdiSourceRequestTypeDef]
|
|
1501
|
+
) -> DeleteSdiSourceResponseTypeDef:
|
|
1502
|
+
"""
|
|
1503
|
+
Delete an SdiSource.
|
|
1504
|
+
|
|
1505
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/delete_sdi_source.html)
|
|
1506
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_sdi_source)
|
|
1507
|
+
"""
|
|
1508
|
+
|
|
1509
|
+
def describe_sdi_source(
|
|
1510
|
+
self, **kwargs: Unpack[DescribeSdiSourceRequestTypeDef]
|
|
1511
|
+
) -> DescribeSdiSourceResponseTypeDef:
|
|
1512
|
+
"""
|
|
1513
|
+
Gets details about a SdiSource.
|
|
1514
|
+
|
|
1515
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/describe_sdi_source.html)
|
|
1516
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#describe_sdi_source)
|
|
1517
|
+
"""
|
|
1518
|
+
|
|
1519
|
+
def list_sdi_sources(
|
|
1520
|
+
self, **kwargs: Unpack[ListSdiSourcesRequestTypeDef]
|
|
1521
|
+
) -> ListSdiSourcesResponseTypeDef:
|
|
1522
|
+
"""
|
|
1523
|
+
List all the SdiSources in the AWS account.
|
|
1524
|
+
|
|
1525
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_sdi_sources.html)
|
|
1526
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_sdi_sources)
|
|
1527
|
+
"""
|
|
1528
|
+
|
|
1529
|
+
def update_sdi_source(
|
|
1530
|
+
self, **kwargs: Unpack[UpdateSdiSourceRequestTypeDef]
|
|
1531
|
+
) -> UpdateSdiSourceResponseTypeDef:
|
|
1532
|
+
"""
|
|
1533
|
+
Change some of the settings in an SdiSource.
|
|
1534
|
+
|
|
1535
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/update_sdi_source.html)
|
|
1536
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#update_sdi_source)
|
|
1537
|
+
"""
|
|
1538
|
+
|
|
1478
1539
|
@overload # type: ignore[override]
|
|
1479
1540
|
def get_paginator( # type: ignore[override]
|
|
1480
1541
|
self, operation_name: Literal["describe_schedule"]
|
|
@@ -1673,6 +1734,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1673
1734
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1674
1735
|
"""
|
|
1675
1736
|
|
|
1737
|
+
@overload # type: ignore[override]
|
|
1738
|
+
def get_paginator( # type: ignore[override]
|
|
1739
|
+
self, operation_name: Literal["list_sdi_sources"]
|
|
1740
|
+
) -> ListSdiSourcesPaginator:
|
|
1741
|
+
"""
|
|
1742
|
+
Create a paginator for an operation.
|
|
1743
|
+
|
|
1744
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1745
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1746
|
+
"""
|
|
1747
|
+
|
|
1676
1748
|
@overload # type: ignore[override]
|
|
1677
1749
|
def get_paginator( # type: ignore[override]
|
|
1678
1750
|
self, operation_name: Literal["list_signal_maps"]
|
|
@@ -260,6 +260,7 @@ __all__ = (
|
|
|
260
260
|
"ListNodesPaginatorName",
|
|
261
261
|
"ListOfferingsPaginatorName",
|
|
262
262
|
"ListReservationsPaginatorName",
|
|
263
|
+
"ListSdiSourcesPaginatorName",
|
|
263
264
|
"ListSignalMapsPaginatorName",
|
|
264
265
|
"LogLevelType",
|
|
265
266
|
"M2tsAbsentInputAudioBehaviorType",
|
|
@@ -352,6 +353,9 @@ __all__ = (
|
|
|
352
353
|
"Scte35SpliceInsertWebDeliveryAllowedBehaviorType",
|
|
353
354
|
"Scte35TypeType",
|
|
354
355
|
"Scte35WebDeliveryAllowedFlagType",
|
|
356
|
+
"SdiSourceModeType",
|
|
357
|
+
"SdiSourceStateType",
|
|
358
|
+
"SdiSourceTypeType",
|
|
355
359
|
"ServiceName",
|
|
356
360
|
"SignalMapCreatedWaiterName",
|
|
357
361
|
"SignalMapMonitorDeletedWaiterName",
|
|
@@ -824,6 +828,7 @@ InputTypeType = Literal[
|
|
|
824
828
|
"RTMP_PULL",
|
|
825
829
|
"RTMP_PUSH",
|
|
826
830
|
"RTP_PUSH",
|
|
831
|
+
"SDI",
|
|
827
832
|
"SMPTE_2110_RECEIVER_GROUP",
|
|
828
833
|
"SRT_CALLER",
|
|
829
834
|
"TS_FILE",
|
|
@@ -848,6 +853,7 @@ ListNetworksPaginatorName = Literal["list_networks"]
|
|
|
848
853
|
ListNodesPaginatorName = Literal["list_nodes"]
|
|
849
854
|
ListOfferingsPaginatorName = Literal["list_offerings"]
|
|
850
855
|
ListReservationsPaginatorName = Literal["list_reservations"]
|
|
856
|
+
ListSdiSourcesPaginatorName = Literal["list_sdi_sources"]
|
|
851
857
|
ListSignalMapsPaginatorName = Literal["list_signal_maps"]
|
|
852
858
|
LogLevelType = Literal["DEBUG", "DISABLED", "ERROR", "INFO", "WARNING"]
|
|
853
859
|
M2tsAbsentInputAudioBehaviorType = Literal["DROP", "ENCODE_SILENCE"]
|
|
@@ -992,6 +998,9 @@ Scte35SpliceInsertNoRegionalBlackoutBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
|
992
998
|
Scte35SpliceInsertWebDeliveryAllowedBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
993
999
|
Scte35TypeType = Literal["NONE", "SCTE_35_WITHOUT_SEGMENTATION"]
|
|
994
1000
|
Scte35WebDeliveryAllowedFlagType = Literal["WEB_DELIVERY_ALLOWED", "WEB_DELIVERY_NOT_ALLOWED"]
|
|
1001
|
+
SdiSourceModeType = Literal["INTERLEAVE", "QUADRANT"]
|
|
1002
|
+
SdiSourceStateType = Literal["DELETED", "IDLE", "IN_USE"]
|
|
1003
|
+
SdiSourceTypeType = Literal["QUAD", "SINGLE"]
|
|
995
1004
|
SignalMapCreatedWaiterName = Literal["signal_map_created"]
|
|
996
1005
|
SignalMapMonitorDeletedWaiterName = Literal["signal_map_monitor_deleted"]
|
|
997
1006
|
SignalMapMonitorDeployedWaiterName = Literal["signal_map_monitor_deployed"]
|
|
@@ -1513,6 +1522,7 @@ PaginatorName = Literal[
|
|
|
1513
1522
|
"list_nodes",
|
|
1514
1523
|
"list_offerings",
|
|
1515
1524
|
"list_reservations",
|
|
1525
|
+
"list_sdi_sources",
|
|
1516
1526
|
"list_signal_maps",
|
|
1517
1527
|
]
|
|
1518
1528
|
WaiterName = Literal[
|
|
@@ -259,6 +259,7 @@ __all__ = (
|
|
|
259
259
|
"ListNodesPaginatorName",
|
|
260
260
|
"ListOfferingsPaginatorName",
|
|
261
261
|
"ListReservationsPaginatorName",
|
|
262
|
+
"ListSdiSourcesPaginatorName",
|
|
262
263
|
"ListSignalMapsPaginatorName",
|
|
263
264
|
"LogLevelType",
|
|
264
265
|
"M2tsAbsentInputAudioBehaviorType",
|
|
@@ -351,6 +352,9 @@ __all__ = (
|
|
|
351
352
|
"Scte35SpliceInsertWebDeliveryAllowedBehaviorType",
|
|
352
353
|
"Scte35TypeType",
|
|
353
354
|
"Scte35WebDeliveryAllowedFlagType",
|
|
355
|
+
"SdiSourceModeType",
|
|
356
|
+
"SdiSourceStateType",
|
|
357
|
+
"SdiSourceTypeType",
|
|
354
358
|
"ServiceName",
|
|
355
359
|
"SignalMapCreatedWaiterName",
|
|
356
360
|
"SignalMapMonitorDeletedWaiterName",
|
|
@@ -822,6 +826,7 @@ InputTypeType = Literal[
|
|
|
822
826
|
"RTMP_PULL",
|
|
823
827
|
"RTMP_PUSH",
|
|
824
828
|
"RTP_PUSH",
|
|
829
|
+
"SDI",
|
|
825
830
|
"SMPTE_2110_RECEIVER_GROUP",
|
|
826
831
|
"SRT_CALLER",
|
|
827
832
|
"TS_FILE",
|
|
@@ -846,6 +851,7 @@ ListNetworksPaginatorName = Literal["list_networks"]
|
|
|
846
851
|
ListNodesPaginatorName = Literal["list_nodes"]
|
|
847
852
|
ListOfferingsPaginatorName = Literal["list_offerings"]
|
|
848
853
|
ListReservationsPaginatorName = Literal["list_reservations"]
|
|
854
|
+
ListSdiSourcesPaginatorName = Literal["list_sdi_sources"]
|
|
849
855
|
ListSignalMapsPaginatorName = Literal["list_signal_maps"]
|
|
850
856
|
LogLevelType = Literal["DEBUG", "DISABLED", "ERROR", "INFO", "WARNING"]
|
|
851
857
|
M2tsAbsentInputAudioBehaviorType = Literal["DROP", "ENCODE_SILENCE"]
|
|
@@ -990,6 +996,9 @@ Scte35SpliceInsertNoRegionalBlackoutBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
|
990
996
|
Scte35SpliceInsertWebDeliveryAllowedBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
991
997
|
Scte35TypeType = Literal["NONE", "SCTE_35_WITHOUT_SEGMENTATION"]
|
|
992
998
|
Scte35WebDeliveryAllowedFlagType = Literal["WEB_DELIVERY_ALLOWED", "WEB_DELIVERY_NOT_ALLOWED"]
|
|
999
|
+
SdiSourceModeType = Literal["INTERLEAVE", "QUADRANT"]
|
|
1000
|
+
SdiSourceStateType = Literal["DELETED", "IDLE", "IN_USE"]
|
|
1001
|
+
SdiSourceTypeType = Literal["QUAD", "SINGLE"]
|
|
993
1002
|
SignalMapCreatedWaiterName = Literal["signal_map_created"]
|
|
994
1003
|
SignalMapMonitorDeletedWaiterName = Literal["signal_map_monitor_deleted"]
|
|
995
1004
|
SignalMapMonitorDeployedWaiterName = Literal["signal_map_monitor_deployed"]
|
|
@@ -1511,6 +1520,7 @@ PaginatorName = Literal[
|
|
|
1511
1520
|
"list_nodes",
|
|
1512
1521
|
"list_offerings",
|
|
1513
1522
|
"list_reservations",
|
|
1523
|
+
"list_sdi_sources",
|
|
1514
1524
|
"list_signal_maps",
|
|
1515
1525
|
]
|
|
1516
1526
|
WaiterName = Literal[
|
|
@@ -30,6 +30,7 @@ Usage::
|
|
|
30
30
|
ListNodesPaginator,
|
|
31
31
|
ListOfferingsPaginator,
|
|
32
32
|
ListReservationsPaginator,
|
|
33
|
+
ListSdiSourcesPaginator,
|
|
33
34
|
ListSignalMapsPaginator,
|
|
34
35
|
)
|
|
35
36
|
|
|
@@ -54,6 +55,7 @@ Usage::
|
|
|
54
55
|
list_nodes_paginator: ListNodesPaginator = client.get_paginator("list_nodes")
|
|
55
56
|
list_offerings_paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")
|
|
56
57
|
list_reservations_paginator: ListReservationsPaginator = client.get_paginator("list_reservations")
|
|
58
|
+
list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator("list_sdi_sources")
|
|
57
59
|
list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")
|
|
58
60
|
```
|
|
59
61
|
"""
|
|
@@ -102,6 +104,8 @@ from .type_defs import (
|
|
|
102
104
|
ListOfferingsResponseTypeDef,
|
|
103
105
|
ListReservationsRequestPaginateTypeDef,
|
|
104
106
|
ListReservationsResponseTypeDef,
|
|
107
|
+
ListSdiSourcesRequestPaginateTypeDef,
|
|
108
|
+
ListSdiSourcesResponseTypeDef,
|
|
105
109
|
ListSignalMapsRequestPaginateTypeDef,
|
|
106
110
|
ListSignalMapsResponseTypeDef,
|
|
107
111
|
)
|
|
@@ -131,6 +135,7 @@ __all__ = (
|
|
|
131
135
|
"ListNodesPaginator",
|
|
132
136
|
"ListOfferingsPaginator",
|
|
133
137
|
"ListReservationsPaginator",
|
|
138
|
+
"ListSdiSourcesPaginator",
|
|
134
139
|
"ListSignalMapsPaginator",
|
|
135
140
|
)
|
|
136
141
|
|
|
@@ -521,6 +526,27 @@ class ListReservationsPaginator(_ListReservationsPaginatorBase):
|
|
|
521
526
|
"""
|
|
522
527
|
|
|
523
528
|
|
|
529
|
+
if TYPE_CHECKING:
|
|
530
|
+
_ListSdiSourcesPaginatorBase = Paginator[ListSdiSourcesResponseTypeDef]
|
|
531
|
+
else:
|
|
532
|
+
_ListSdiSourcesPaginatorBase = Paginator # type: ignore[assignment]
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
class ListSdiSourcesPaginator(_ListSdiSourcesPaginatorBase):
|
|
536
|
+
"""
|
|
537
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/paginator/ListSdiSources.html#MediaLive.Paginator.ListSdiSources)
|
|
538
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/paginators/#listsdisourcespaginator)
|
|
539
|
+
"""
|
|
540
|
+
|
|
541
|
+
def paginate( # type: ignore[override]
|
|
542
|
+
self, **kwargs: Unpack[ListSdiSourcesRequestPaginateTypeDef]
|
|
543
|
+
) -> PageIterator[ListSdiSourcesResponseTypeDef]:
|
|
544
|
+
"""
|
|
545
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/paginator/ListSdiSources.html#MediaLive.Paginator.ListSdiSources.paginate)
|
|
546
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/paginators/#listsdisourcespaginator)
|
|
547
|
+
"""
|
|
548
|
+
|
|
549
|
+
|
|
524
550
|
if TYPE_CHECKING:
|
|
525
551
|
_ListSignalMapsPaginatorBase = Paginator[ListSignalMapsResponseTypeDef]
|
|
526
552
|
else:
|
|
@@ -30,6 +30,7 @@ Usage::
|
|
|
30
30
|
ListNodesPaginator,
|
|
31
31
|
ListOfferingsPaginator,
|
|
32
32
|
ListReservationsPaginator,
|
|
33
|
+
ListSdiSourcesPaginator,
|
|
33
34
|
ListSignalMapsPaginator,
|
|
34
35
|
)
|
|
35
36
|
|
|
@@ -54,6 +55,7 @@ Usage::
|
|
|
54
55
|
list_nodes_paginator: ListNodesPaginator = client.get_paginator("list_nodes")
|
|
55
56
|
list_offerings_paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")
|
|
56
57
|
list_reservations_paginator: ListReservationsPaginator = client.get_paginator("list_reservations")
|
|
58
|
+
list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator("list_sdi_sources")
|
|
57
59
|
list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")
|
|
58
60
|
```
|
|
59
61
|
"""
|
|
@@ -102,6 +104,8 @@ from .type_defs import (
|
|
|
102
104
|
ListOfferingsResponseTypeDef,
|
|
103
105
|
ListReservationsRequestPaginateTypeDef,
|
|
104
106
|
ListReservationsResponseTypeDef,
|
|
107
|
+
ListSdiSourcesRequestPaginateTypeDef,
|
|
108
|
+
ListSdiSourcesResponseTypeDef,
|
|
105
109
|
ListSignalMapsRequestPaginateTypeDef,
|
|
106
110
|
ListSignalMapsResponseTypeDef,
|
|
107
111
|
)
|
|
@@ -130,6 +134,7 @@ __all__ = (
|
|
|
130
134
|
"ListNodesPaginator",
|
|
131
135
|
"ListOfferingsPaginator",
|
|
132
136
|
"ListReservationsPaginator",
|
|
137
|
+
"ListSdiSourcesPaginator",
|
|
133
138
|
"ListSignalMapsPaginator",
|
|
134
139
|
)
|
|
135
140
|
|
|
@@ -465,6 +470,24 @@ class ListReservationsPaginator(_ListReservationsPaginatorBase):
|
|
|
465
470
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/paginators/#listreservationspaginator)
|
|
466
471
|
"""
|
|
467
472
|
|
|
473
|
+
if TYPE_CHECKING:
|
|
474
|
+
_ListSdiSourcesPaginatorBase = Paginator[ListSdiSourcesResponseTypeDef]
|
|
475
|
+
else:
|
|
476
|
+
_ListSdiSourcesPaginatorBase = Paginator # type: ignore[assignment]
|
|
477
|
+
|
|
478
|
+
class ListSdiSourcesPaginator(_ListSdiSourcesPaginatorBase):
|
|
479
|
+
"""
|
|
480
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/paginator/ListSdiSources.html#MediaLive.Paginator.ListSdiSources)
|
|
481
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/paginators/#listsdisourcespaginator)
|
|
482
|
+
"""
|
|
483
|
+
def paginate( # type: ignore[override]
|
|
484
|
+
self, **kwargs: Unpack[ListSdiSourcesRequestPaginateTypeDef]
|
|
485
|
+
) -> PageIterator[ListSdiSourcesResponseTypeDef]:
|
|
486
|
+
"""
|
|
487
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/paginator/ListSdiSources.html#MediaLive.Paginator.ListSdiSources.paginate)
|
|
488
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/paginators/#listsdisourcespaginator)
|
|
489
|
+
"""
|
|
490
|
+
|
|
468
491
|
if TYPE_CHECKING:
|
|
469
492
|
_ListSignalMapsPaginatorBase = Paginator[ListSignalMapsResponseTypeDef]
|
|
470
493
|
else:
|