mypy-boto3-medialive 1.37.26__py3-none-any.whl → 1.37.32__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.
- mypy_boto3_medialive/__init__.py +4 -0
- mypy_boto3_medialive/__init__.pyi +4 -0
- mypy_boto3_medialive/__main__.py +3 -3
- mypy_boto3_medialive/client.py +72 -0
- mypy_boto3_medialive/client.pyi +72 -0
- mypy_boto3_medialive/literals.py +14 -0
- mypy_boto3_medialive/literals.pyi +14 -0
- mypy_boto3_medialive/paginator.py +26 -0
- mypy_boto3_medialive/paginator.pyi +23 -0
- mypy_boto3_medialive/type_defs.py +197 -30
- mypy_boto3_medialive/type_defs.pyi +179 -28
- mypy_boto3_medialive/version.py +1 -1
- {mypy_boto3_medialive-1.37.26.dist-info → mypy_boto3_medialive-1.37.32.dist-info}/METADATA +6 -4
- mypy_boto3_medialive-1.37.32.dist-info/RECORD +20 -0
- mypy_boto3_medialive-1.37.26.dist-info/RECORD +0 -20
- {mypy_boto3_medialive-1.37.26.dist-info → mypy_boto3_medialive-1.37.32.dist-info}/WHEEL +0 -0
- {mypy_boto3_medialive-1.37.26.dist-info → mypy_boto3_medialive-1.37.32.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_medialive-1.37.26.dist-info → mypy_boto3_medialive-1.37.32.dist-info}/top_level.txt +0 -0
mypy_boto3_medialive/__init__.py
CHANGED
|
@@ -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",
|
mypy_boto3_medialive/__main__.py
CHANGED
|
@@ -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.32\n"
|
|
16
|
+
"Version: 1.37.32\n"
|
|
17
17
|
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_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.32\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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"]
|
mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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"]
|
mypy_boto3_medialive/literals.py
CHANGED
|
@@ -88,6 +88,8 @@ __all__ = (
|
|
|
88
88
|
"CmafIngestSegmentLengthUnitsType",
|
|
89
89
|
"CmafKLVBehaviorType",
|
|
90
90
|
"CmafNielsenId3BehaviorType",
|
|
91
|
+
"CmafTimedMetadataId3FrameType",
|
|
92
|
+
"CmafTimedMetadataPassthroughType",
|
|
91
93
|
"ColorSpaceType",
|
|
92
94
|
"ContentTypeType",
|
|
93
95
|
"DashRoleAudioType",
|
|
@@ -260,6 +262,7 @@ __all__ = (
|
|
|
260
262
|
"ListNodesPaginatorName",
|
|
261
263
|
"ListOfferingsPaginatorName",
|
|
262
264
|
"ListReservationsPaginatorName",
|
|
265
|
+
"ListSdiSourcesPaginatorName",
|
|
263
266
|
"ListSignalMapsPaginatorName",
|
|
264
267
|
"LogLevelType",
|
|
265
268
|
"M2tsAbsentInputAudioBehaviorType",
|
|
@@ -352,6 +355,9 @@ __all__ = (
|
|
|
352
355
|
"Scte35SpliceInsertWebDeliveryAllowedBehaviorType",
|
|
353
356
|
"Scte35TypeType",
|
|
354
357
|
"Scte35WebDeliveryAllowedFlagType",
|
|
358
|
+
"SdiSourceModeType",
|
|
359
|
+
"SdiSourceStateType",
|
|
360
|
+
"SdiSourceTypeType",
|
|
355
361
|
"ServiceName",
|
|
356
362
|
"SignalMapCreatedWaiterName",
|
|
357
363
|
"SignalMapMonitorDeletedWaiterName",
|
|
@@ -531,6 +537,8 @@ CmafId3BehaviorType = Literal["DISABLED", "ENABLED"]
|
|
|
531
537
|
CmafIngestSegmentLengthUnitsType = Literal["MILLISECONDS", "SECONDS"]
|
|
532
538
|
CmafKLVBehaviorType = Literal["NO_PASSTHROUGH", "PASSTHROUGH"]
|
|
533
539
|
CmafNielsenId3BehaviorType = Literal["NO_PASSTHROUGH", "PASSTHROUGH"]
|
|
540
|
+
CmafTimedMetadataId3FrameType = Literal["NONE", "PRIV", "TDRL"]
|
|
541
|
+
CmafTimedMetadataPassthroughType = Literal["DISABLED", "ENABLED"]
|
|
534
542
|
ColorSpaceType = Literal["HDR10", "HLG_2020", "REC_601", "REC_709"]
|
|
535
543
|
ContentTypeType = Literal["image/jpeg"]
|
|
536
544
|
DashRoleAudioType = Literal[
|
|
@@ -824,6 +832,7 @@ InputTypeType = Literal[
|
|
|
824
832
|
"RTMP_PULL",
|
|
825
833
|
"RTMP_PUSH",
|
|
826
834
|
"RTP_PUSH",
|
|
835
|
+
"SDI",
|
|
827
836
|
"SMPTE_2110_RECEIVER_GROUP",
|
|
828
837
|
"SRT_CALLER",
|
|
829
838
|
"TS_FILE",
|
|
@@ -848,6 +857,7 @@ ListNetworksPaginatorName = Literal["list_networks"]
|
|
|
848
857
|
ListNodesPaginatorName = Literal["list_nodes"]
|
|
849
858
|
ListOfferingsPaginatorName = Literal["list_offerings"]
|
|
850
859
|
ListReservationsPaginatorName = Literal["list_reservations"]
|
|
860
|
+
ListSdiSourcesPaginatorName = Literal["list_sdi_sources"]
|
|
851
861
|
ListSignalMapsPaginatorName = Literal["list_signal_maps"]
|
|
852
862
|
LogLevelType = Literal["DEBUG", "DISABLED", "ERROR", "INFO", "WARNING"]
|
|
853
863
|
M2tsAbsentInputAudioBehaviorType = Literal["DROP", "ENCODE_SILENCE"]
|
|
@@ -992,6 +1002,9 @@ Scte35SpliceInsertNoRegionalBlackoutBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
|
992
1002
|
Scte35SpliceInsertWebDeliveryAllowedBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
993
1003
|
Scte35TypeType = Literal["NONE", "SCTE_35_WITHOUT_SEGMENTATION"]
|
|
994
1004
|
Scte35WebDeliveryAllowedFlagType = Literal["WEB_DELIVERY_ALLOWED", "WEB_DELIVERY_NOT_ALLOWED"]
|
|
1005
|
+
SdiSourceModeType = Literal["INTERLEAVE", "QUADRANT"]
|
|
1006
|
+
SdiSourceStateType = Literal["DELETED", "IDLE", "IN_USE"]
|
|
1007
|
+
SdiSourceTypeType = Literal["QUAD", "SINGLE"]
|
|
995
1008
|
SignalMapCreatedWaiterName = Literal["signal_map_created"]
|
|
996
1009
|
SignalMapMonitorDeletedWaiterName = Literal["signal_map_monitor_deleted"]
|
|
997
1010
|
SignalMapMonitorDeployedWaiterName = Literal["signal_map_monitor_deployed"]
|
|
@@ -1513,6 +1526,7 @@ PaginatorName = Literal[
|
|
|
1513
1526
|
"list_nodes",
|
|
1514
1527
|
"list_offerings",
|
|
1515
1528
|
"list_reservations",
|
|
1529
|
+
"list_sdi_sources",
|
|
1516
1530
|
"list_signal_maps",
|
|
1517
1531
|
]
|
|
1518
1532
|
WaiterName = Literal[
|
|
@@ -87,6 +87,8 @@ __all__ = (
|
|
|
87
87
|
"CmafIngestSegmentLengthUnitsType",
|
|
88
88
|
"CmafKLVBehaviorType",
|
|
89
89
|
"CmafNielsenId3BehaviorType",
|
|
90
|
+
"CmafTimedMetadataId3FrameType",
|
|
91
|
+
"CmafTimedMetadataPassthroughType",
|
|
90
92
|
"ColorSpaceType",
|
|
91
93
|
"ContentTypeType",
|
|
92
94
|
"DashRoleAudioType",
|
|
@@ -259,6 +261,7 @@ __all__ = (
|
|
|
259
261
|
"ListNodesPaginatorName",
|
|
260
262
|
"ListOfferingsPaginatorName",
|
|
261
263
|
"ListReservationsPaginatorName",
|
|
264
|
+
"ListSdiSourcesPaginatorName",
|
|
262
265
|
"ListSignalMapsPaginatorName",
|
|
263
266
|
"LogLevelType",
|
|
264
267
|
"M2tsAbsentInputAudioBehaviorType",
|
|
@@ -351,6 +354,9 @@ __all__ = (
|
|
|
351
354
|
"Scte35SpliceInsertWebDeliveryAllowedBehaviorType",
|
|
352
355
|
"Scte35TypeType",
|
|
353
356
|
"Scte35WebDeliveryAllowedFlagType",
|
|
357
|
+
"SdiSourceModeType",
|
|
358
|
+
"SdiSourceStateType",
|
|
359
|
+
"SdiSourceTypeType",
|
|
354
360
|
"ServiceName",
|
|
355
361
|
"SignalMapCreatedWaiterName",
|
|
356
362
|
"SignalMapMonitorDeletedWaiterName",
|
|
@@ -529,6 +535,8 @@ CmafId3BehaviorType = Literal["DISABLED", "ENABLED"]
|
|
|
529
535
|
CmafIngestSegmentLengthUnitsType = Literal["MILLISECONDS", "SECONDS"]
|
|
530
536
|
CmafKLVBehaviorType = Literal["NO_PASSTHROUGH", "PASSTHROUGH"]
|
|
531
537
|
CmafNielsenId3BehaviorType = Literal["NO_PASSTHROUGH", "PASSTHROUGH"]
|
|
538
|
+
CmafTimedMetadataId3FrameType = Literal["NONE", "PRIV", "TDRL"]
|
|
539
|
+
CmafTimedMetadataPassthroughType = Literal["DISABLED", "ENABLED"]
|
|
532
540
|
ColorSpaceType = Literal["HDR10", "HLG_2020", "REC_601", "REC_709"]
|
|
533
541
|
ContentTypeType = Literal["image/jpeg"]
|
|
534
542
|
DashRoleAudioType = Literal[
|
|
@@ -822,6 +830,7 @@ InputTypeType = Literal[
|
|
|
822
830
|
"RTMP_PULL",
|
|
823
831
|
"RTMP_PUSH",
|
|
824
832
|
"RTP_PUSH",
|
|
833
|
+
"SDI",
|
|
825
834
|
"SMPTE_2110_RECEIVER_GROUP",
|
|
826
835
|
"SRT_CALLER",
|
|
827
836
|
"TS_FILE",
|
|
@@ -846,6 +855,7 @@ ListNetworksPaginatorName = Literal["list_networks"]
|
|
|
846
855
|
ListNodesPaginatorName = Literal["list_nodes"]
|
|
847
856
|
ListOfferingsPaginatorName = Literal["list_offerings"]
|
|
848
857
|
ListReservationsPaginatorName = Literal["list_reservations"]
|
|
858
|
+
ListSdiSourcesPaginatorName = Literal["list_sdi_sources"]
|
|
849
859
|
ListSignalMapsPaginatorName = Literal["list_signal_maps"]
|
|
850
860
|
LogLevelType = Literal["DEBUG", "DISABLED", "ERROR", "INFO", "WARNING"]
|
|
851
861
|
M2tsAbsentInputAudioBehaviorType = Literal["DROP", "ENCODE_SILENCE"]
|
|
@@ -990,6 +1000,9 @@ Scte35SpliceInsertNoRegionalBlackoutBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
|
990
1000
|
Scte35SpliceInsertWebDeliveryAllowedBehaviorType = Literal["FOLLOW", "IGNORE"]
|
|
991
1001
|
Scte35TypeType = Literal["NONE", "SCTE_35_WITHOUT_SEGMENTATION"]
|
|
992
1002
|
Scte35WebDeliveryAllowedFlagType = Literal["WEB_DELIVERY_ALLOWED", "WEB_DELIVERY_NOT_ALLOWED"]
|
|
1003
|
+
SdiSourceModeType = Literal["INTERLEAVE", "QUADRANT"]
|
|
1004
|
+
SdiSourceStateType = Literal["DELETED", "IDLE", "IN_USE"]
|
|
1005
|
+
SdiSourceTypeType = Literal["QUAD", "SINGLE"]
|
|
993
1006
|
SignalMapCreatedWaiterName = Literal["signal_map_created"]
|
|
994
1007
|
SignalMapMonitorDeletedWaiterName = Literal["signal_map_monitor_deleted"]
|
|
995
1008
|
SignalMapMonitorDeployedWaiterName = Literal["signal_map_monitor_deployed"]
|
|
@@ -1511,6 +1524,7 @@ PaginatorName = Literal[
|
|
|
1511
1524
|
"list_nodes",
|
|
1512
1525
|
"list_offerings",
|
|
1513
1526
|
"list_reservations",
|
|
1527
|
+
"list_sdi_sources",
|
|
1514
1528
|
"list_signal_maps",
|
|
1515
1529
|
]
|
|
1516
1530
|
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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medialive/paginators/#listsdisourcespaginator)
|
|
489
|
+
"""
|
|
490
|
+
|
|
468
491
|
if TYPE_CHECKING:
|
|
469
492
|
_ListSignalMapsPaginatorBase = Paginator[ListSignalMapsResponseTypeDef]
|
|
470
493
|
else:
|