types-boto3-medialive 1.36.0__py3-none-any.whl → 1.38.0__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 +8 -2
- types_boto3_medialive/__init__.pyi +8 -2
- types_boto3_medialive/__main__.py +4 -4
- types_boto3_medialive/client.py +300 -246
- types_boto3_medialive/client.pyi +300 -246
- types_boto3_medialive/literals.py +23 -4
- types_boto3_medialive/literals.pyi +23 -4
- types_boto3_medialive/paginator.py +28 -2
- types_boto3_medialive/paginator.pyi +25 -2
- types_boto3_medialive/type_defs.py +894 -673
- types_boto3_medialive/type_defs.pyi +844 -648
- types_boto3_medialive/version.py +1 -1
- types_boto3_medialive/waiter.py +32 -17
- types_boto3_medialive/waiter.pyi +32 -17
- {types_boto3_medialive-1.36.0.dist-info → types_boto3_medialive-1.38.0.dist-info}/METADATA +16 -9
- types_boto3_medialive-1.38.0.dist-info/RECORD +20 -0
- {types_boto3_medialive-1.36.0.dist-info → types_boto3_medialive-1.38.0.dist-info}/WHEEL +1 -1
- types_boto3_medialive-1.36.0.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.36.0.dist-info → types_boto3_medialive-1.38.0.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_medialive-1.36.0.dist-info → types_boto3_medialive-1.38.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for medialive service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -37,6 +41,7 @@ Usage::
|
|
|
37
41
|
ListNodesPaginator,
|
|
38
42
|
ListOfferingsPaginator,
|
|
39
43
|
ListReservationsPaginator,
|
|
44
|
+
ListSdiSourcesPaginator,
|
|
40
45
|
ListSignalMapsPaginator,
|
|
41
46
|
MediaLiveClient,
|
|
42
47
|
MultiplexCreatedWaiter,
|
|
@@ -95,10 +100,9 @@ Usage::
|
|
|
95
100
|
list_nodes_paginator: ListNodesPaginator = client.get_paginator("list_nodes")
|
|
96
101
|
list_offerings_paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")
|
|
97
102
|
list_reservations_paginator: ListReservationsPaginator = client.get_paginator("list_reservations")
|
|
103
|
+
list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator("list_sdi_sources")
|
|
98
104
|
list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")
|
|
99
105
|
```
|
|
100
|
-
|
|
101
|
-
Copyright 2025 Vlad Emelianov
|
|
102
106
|
"""
|
|
103
107
|
|
|
104
108
|
from .client import MediaLiveClient
|
|
@@ -121,6 +125,7 @@ from .paginator import (
|
|
|
121
125
|
ListNodesPaginator,
|
|
122
126
|
ListOfferingsPaginator,
|
|
123
127
|
ListReservationsPaginator,
|
|
128
|
+
ListSdiSourcesPaginator,
|
|
124
129
|
ListSignalMapsPaginator,
|
|
125
130
|
)
|
|
126
131
|
from .waiter import (
|
|
@@ -183,6 +188,7 @@ __all__ = (
|
|
|
183
188
|
"ListNodesPaginator",
|
|
184
189
|
"ListOfferingsPaginator",
|
|
185
190
|
"ListReservationsPaginator",
|
|
191
|
+
"ListSdiSourcesPaginator",
|
|
186
192
|
"ListSignalMapsPaginator",
|
|
187
193
|
"MediaLiveClient",
|
|
188
194
|
"MultiplexCreatedWaiter",
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for medialive service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -37,6 +41,7 @@ Usage::
|
|
|
37
41
|
ListNodesPaginator,
|
|
38
42
|
ListOfferingsPaginator,
|
|
39
43
|
ListReservationsPaginator,
|
|
44
|
+
ListSdiSourcesPaginator,
|
|
40
45
|
ListSignalMapsPaginator,
|
|
41
46
|
MediaLiveClient,
|
|
42
47
|
MultiplexCreatedWaiter,
|
|
@@ -95,10 +100,9 @@ Usage::
|
|
|
95
100
|
list_nodes_paginator: ListNodesPaginator = client.get_paginator("list_nodes")
|
|
96
101
|
list_offerings_paginator: ListOfferingsPaginator = client.get_paginator("list_offerings")
|
|
97
102
|
list_reservations_paginator: ListReservationsPaginator = client.get_paginator("list_reservations")
|
|
103
|
+
list_sdi_sources_paginator: ListSdiSourcesPaginator = client.get_paginator("list_sdi_sources")
|
|
98
104
|
list_signal_maps_paginator: ListSignalMapsPaginator = client.get_paginator("list_signal_maps")
|
|
99
105
|
```
|
|
100
|
-
|
|
101
|
-
Copyright 2025 Vlad Emelianov
|
|
102
106
|
"""
|
|
103
107
|
|
|
104
108
|
from .client import MediaLiveClient
|
|
@@ -121,6 +125,7 @@ from .paginator import (
|
|
|
121
125
|
ListNodesPaginator,
|
|
122
126
|
ListOfferingsPaginator,
|
|
123
127
|
ListReservationsPaginator,
|
|
128
|
+
ListSdiSourcesPaginator,
|
|
124
129
|
ListSignalMapsPaginator,
|
|
125
130
|
)
|
|
126
131
|
from .waiter import (
|
|
@@ -182,6 +187,7 @@ __all__ = (
|
|
|
182
187
|
"ListNodesPaginator",
|
|
183
188
|
"ListOfferingsPaginator",
|
|
184
189
|
"ListReservationsPaginator",
|
|
190
|
+
"ListSdiSourcesPaginator",
|
|
185
191
|
"ListSignalMapsPaginator",
|
|
186
192
|
"MediaLiveClient",
|
|
187
193
|
"MultiplexCreatedWaiter",
|
|
@@ -12,9 +12,9 @@ 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.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 MediaLive 1.38.0\n"
|
|
16
|
+
"Version: 1.38.0\n"
|
|
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"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\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.
|
|
29
|
+
sys.stdout.write("1.38.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|