types-boto3-medialive 1.40.35__py3-none-any.whl → 1.40.57__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 +12 -0
- types_boto3_medialive/__init__.pyi +12 -0
- types_boto3_medialive/__main__.py +3 -3
- types_boto3_medialive/client.py +70 -0
- types_boto3_medialive/client.pyi +70 -0
- types_boto3_medialive/literals.py +16 -0
- types_boto3_medialive/literals.pyi +16 -0
- types_boto3_medialive/paginator.py +78 -0
- types_boto3_medialive/paginator.pyi +69 -0
- types_boto3_medialive/type_defs.py +121 -0
- types_boto3_medialive/type_defs.pyi +109 -0
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.40.35.dist-info → types_boto3_medialive-1.40.57.dist-info}/METADATA +14 -4
- types_boto3_medialive-1.40.57.dist-info/RECORD +20 -0
- types_boto3_medialive-1.40.35.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.40.35.dist-info → types_boto3_medialive-1.40.57.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.40.35.dist-info → types_boto3_medialive-1.40.57.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.40.35.dist-info → types_boto3_medialive-1.40.57.dist-info}/top_level.txt +0 -0
|
@@ -24,10 +24,12 @@ Usage::
|
|
|
24
24
|
InputAttachedWaiter,
|
|
25
25
|
InputDeletedWaiter,
|
|
26
26
|
InputDetachedWaiter,
|
|
27
|
+
ListAlertsPaginator,
|
|
27
28
|
ListChannelPlacementGroupsPaginator,
|
|
28
29
|
ListChannelsPaginator,
|
|
29
30
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
30
31
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
32
|
+
ListClusterAlertsPaginator,
|
|
31
33
|
ListClustersPaginator,
|
|
32
34
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
33
35
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -35,6 +37,7 @@ Usage::
|
|
|
35
37
|
ListInputDevicesPaginator,
|
|
36
38
|
ListInputSecurityGroupsPaginator,
|
|
37
39
|
ListInputsPaginator,
|
|
40
|
+
ListMultiplexAlertsPaginator,
|
|
38
41
|
ListMultiplexProgramsPaginator,
|
|
39
42
|
ListMultiplexesPaginator,
|
|
40
43
|
ListNetworksPaginator,
|
|
@@ -83,10 +86,12 @@ Usage::
|
|
|
83
86
|
signal_map_updated_waiter: SignalMapUpdatedWaiter = client.get_waiter("signal_map_updated")
|
|
84
87
|
|
|
85
88
|
describe_schedule_paginator: DescribeSchedulePaginator = client.get_paginator("describe_schedule")
|
|
89
|
+
list_alerts_paginator: ListAlertsPaginator = client.get_paginator("list_alerts")
|
|
86
90
|
list_channel_placement_groups_paginator: ListChannelPlacementGroupsPaginator = client.get_paginator("list_channel_placement_groups")
|
|
87
91
|
list_channels_paginator: ListChannelsPaginator = client.get_paginator("list_channels")
|
|
88
92
|
list_cloud_watch_alarm_template_groups_paginator: ListCloudWatchAlarmTemplateGroupsPaginator = client.get_paginator("list_cloud_watch_alarm_template_groups")
|
|
89
93
|
list_cloud_watch_alarm_templates_paginator: ListCloudWatchAlarmTemplatesPaginator = client.get_paginator("list_cloud_watch_alarm_templates")
|
|
94
|
+
list_cluster_alerts_paginator: ListClusterAlertsPaginator = client.get_paginator("list_cluster_alerts")
|
|
90
95
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
91
96
|
list_event_bridge_rule_template_groups_paginator: ListEventBridgeRuleTemplateGroupsPaginator = client.get_paginator("list_event_bridge_rule_template_groups")
|
|
92
97
|
list_event_bridge_rule_templates_paginator: ListEventBridgeRuleTemplatesPaginator = client.get_paginator("list_event_bridge_rule_templates")
|
|
@@ -94,6 +99,7 @@ Usage::
|
|
|
94
99
|
list_input_devices_paginator: ListInputDevicesPaginator = client.get_paginator("list_input_devices")
|
|
95
100
|
list_input_security_groups_paginator: ListInputSecurityGroupsPaginator = client.get_paginator("list_input_security_groups")
|
|
96
101
|
list_inputs_paginator: ListInputsPaginator = client.get_paginator("list_inputs")
|
|
102
|
+
list_multiplex_alerts_paginator: ListMultiplexAlertsPaginator = client.get_paginator("list_multiplex_alerts")
|
|
97
103
|
list_multiplex_programs_paginator: ListMultiplexProgramsPaginator = client.get_paginator("list_multiplex_programs")
|
|
98
104
|
list_multiplexes_paginator: ListMultiplexesPaginator = client.get_paginator("list_multiplexes")
|
|
99
105
|
list_networks_paginator: ListNetworksPaginator = client.get_paginator("list_networks")
|
|
@@ -108,10 +114,12 @@ Usage::
|
|
|
108
114
|
from .client import MediaLiveClient
|
|
109
115
|
from .paginator import (
|
|
110
116
|
DescribeSchedulePaginator,
|
|
117
|
+
ListAlertsPaginator,
|
|
111
118
|
ListChannelPlacementGroupsPaginator,
|
|
112
119
|
ListChannelsPaginator,
|
|
113
120
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
114
121
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
122
|
+
ListClusterAlertsPaginator,
|
|
115
123
|
ListClustersPaginator,
|
|
116
124
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
117
125
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -119,6 +127,7 @@ from .paginator import (
|
|
|
119
127
|
ListInputDeviceTransfersPaginator,
|
|
120
128
|
ListInputSecurityGroupsPaginator,
|
|
121
129
|
ListInputsPaginator,
|
|
130
|
+
ListMultiplexAlertsPaginator,
|
|
122
131
|
ListMultiplexesPaginator,
|
|
123
132
|
ListMultiplexProgramsPaginator,
|
|
124
133
|
ListNetworksPaginator,
|
|
@@ -171,10 +180,12 @@ __all__ = (
|
|
|
171
180
|
"InputAttachedWaiter",
|
|
172
181
|
"InputDeletedWaiter",
|
|
173
182
|
"InputDetachedWaiter",
|
|
183
|
+
"ListAlertsPaginator",
|
|
174
184
|
"ListChannelPlacementGroupsPaginator",
|
|
175
185
|
"ListChannelsPaginator",
|
|
176
186
|
"ListCloudWatchAlarmTemplateGroupsPaginator",
|
|
177
187
|
"ListCloudWatchAlarmTemplatesPaginator",
|
|
188
|
+
"ListClusterAlertsPaginator",
|
|
178
189
|
"ListClustersPaginator",
|
|
179
190
|
"ListEventBridgeRuleTemplateGroupsPaginator",
|
|
180
191
|
"ListEventBridgeRuleTemplatesPaginator",
|
|
@@ -182,6 +193,7 @@ __all__ = (
|
|
|
182
193
|
"ListInputDevicesPaginator",
|
|
183
194
|
"ListInputSecurityGroupsPaginator",
|
|
184
195
|
"ListInputsPaginator",
|
|
196
|
+
"ListMultiplexAlertsPaginator",
|
|
185
197
|
"ListMultiplexProgramsPaginator",
|
|
186
198
|
"ListMultiplexesPaginator",
|
|
187
199
|
"ListNetworksPaginator",
|
|
@@ -24,10 +24,12 @@ Usage::
|
|
|
24
24
|
InputAttachedWaiter,
|
|
25
25
|
InputDeletedWaiter,
|
|
26
26
|
InputDetachedWaiter,
|
|
27
|
+
ListAlertsPaginator,
|
|
27
28
|
ListChannelPlacementGroupsPaginator,
|
|
28
29
|
ListChannelsPaginator,
|
|
29
30
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
30
31
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
32
|
+
ListClusterAlertsPaginator,
|
|
31
33
|
ListClustersPaginator,
|
|
32
34
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
33
35
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -35,6 +37,7 @@ Usage::
|
|
|
35
37
|
ListInputDevicesPaginator,
|
|
36
38
|
ListInputSecurityGroupsPaginator,
|
|
37
39
|
ListInputsPaginator,
|
|
40
|
+
ListMultiplexAlertsPaginator,
|
|
38
41
|
ListMultiplexProgramsPaginator,
|
|
39
42
|
ListMultiplexesPaginator,
|
|
40
43
|
ListNetworksPaginator,
|
|
@@ -83,10 +86,12 @@ Usage::
|
|
|
83
86
|
signal_map_updated_waiter: SignalMapUpdatedWaiter = client.get_waiter("signal_map_updated")
|
|
84
87
|
|
|
85
88
|
describe_schedule_paginator: DescribeSchedulePaginator = client.get_paginator("describe_schedule")
|
|
89
|
+
list_alerts_paginator: ListAlertsPaginator = client.get_paginator("list_alerts")
|
|
86
90
|
list_channel_placement_groups_paginator: ListChannelPlacementGroupsPaginator = client.get_paginator("list_channel_placement_groups")
|
|
87
91
|
list_channels_paginator: ListChannelsPaginator = client.get_paginator("list_channels")
|
|
88
92
|
list_cloud_watch_alarm_template_groups_paginator: ListCloudWatchAlarmTemplateGroupsPaginator = client.get_paginator("list_cloud_watch_alarm_template_groups")
|
|
89
93
|
list_cloud_watch_alarm_templates_paginator: ListCloudWatchAlarmTemplatesPaginator = client.get_paginator("list_cloud_watch_alarm_templates")
|
|
94
|
+
list_cluster_alerts_paginator: ListClusterAlertsPaginator = client.get_paginator("list_cluster_alerts")
|
|
90
95
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
91
96
|
list_event_bridge_rule_template_groups_paginator: ListEventBridgeRuleTemplateGroupsPaginator = client.get_paginator("list_event_bridge_rule_template_groups")
|
|
92
97
|
list_event_bridge_rule_templates_paginator: ListEventBridgeRuleTemplatesPaginator = client.get_paginator("list_event_bridge_rule_templates")
|
|
@@ -94,6 +99,7 @@ Usage::
|
|
|
94
99
|
list_input_devices_paginator: ListInputDevicesPaginator = client.get_paginator("list_input_devices")
|
|
95
100
|
list_input_security_groups_paginator: ListInputSecurityGroupsPaginator = client.get_paginator("list_input_security_groups")
|
|
96
101
|
list_inputs_paginator: ListInputsPaginator = client.get_paginator("list_inputs")
|
|
102
|
+
list_multiplex_alerts_paginator: ListMultiplexAlertsPaginator = client.get_paginator("list_multiplex_alerts")
|
|
97
103
|
list_multiplex_programs_paginator: ListMultiplexProgramsPaginator = client.get_paginator("list_multiplex_programs")
|
|
98
104
|
list_multiplexes_paginator: ListMultiplexesPaginator = client.get_paginator("list_multiplexes")
|
|
99
105
|
list_networks_paginator: ListNetworksPaginator = client.get_paginator("list_networks")
|
|
@@ -108,10 +114,12 @@ Usage::
|
|
|
108
114
|
from .client import MediaLiveClient
|
|
109
115
|
from .paginator import (
|
|
110
116
|
DescribeSchedulePaginator,
|
|
117
|
+
ListAlertsPaginator,
|
|
111
118
|
ListChannelPlacementGroupsPaginator,
|
|
112
119
|
ListChannelsPaginator,
|
|
113
120
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
114
121
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
122
|
+
ListClusterAlertsPaginator,
|
|
115
123
|
ListClustersPaginator,
|
|
116
124
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
117
125
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -119,6 +127,7 @@ from .paginator import (
|
|
|
119
127
|
ListInputDeviceTransfersPaginator,
|
|
120
128
|
ListInputSecurityGroupsPaginator,
|
|
121
129
|
ListInputsPaginator,
|
|
130
|
+
ListMultiplexAlertsPaginator,
|
|
122
131
|
ListMultiplexesPaginator,
|
|
123
132
|
ListMultiplexProgramsPaginator,
|
|
124
133
|
ListNetworksPaginator,
|
|
@@ -170,10 +179,12 @@ __all__ = (
|
|
|
170
179
|
"InputAttachedWaiter",
|
|
171
180
|
"InputDeletedWaiter",
|
|
172
181
|
"InputDetachedWaiter",
|
|
182
|
+
"ListAlertsPaginator",
|
|
173
183
|
"ListChannelPlacementGroupsPaginator",
|
|
174
184
|
"ListChannelsPaginator",
|
|
175
185
|
"ListCloudWatchAlarmTemplateGroupsPaginator",
|
|
176
186
|
"ListCloudWatchAlarmTemplatesPaginator",
|
|
187
|
+
"ListClusterAlertsPaginator",
|
|
177
188
|
"ListClustersPaginator",
|
|
178
189
|
"ListEventBridgeRuleTemplateGroupsPaginator",
|
|
179
190
|
"ListEventBridgeRuleTemplatesPaginator",
|
|
@@ -181,6 +192,7 @@ __all__ = (
|
|
|
181
192
|
"ListInputDevicesPaginator",
|
|
182
193
|
"ListInputSecurityGroupsPaginator",
|
|
183
194
|
"ListInputsPaginator",
|
|
195
|
+
"ListMultiplexAlertsPaginator",
|
|
184
196
|
"ListMultiplexProgramsPaginator",
|
|
185
197
|
"ListMultiplexesPaginator",
|
|
186
198
|
"ListNetworksPaginator",
|
|
@@ -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.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 MediaLive 1.40.57\n"
|
|
16
|
+
"Version: 1.40.57\n"
|
|
17
17
|
"Builder version: 8.11.0\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.40.
|
|
29
|
+
sys.stdout.write("1.40.57\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_medialive/client.py
CHANGED
|
@@ -27,10 +27,12 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
DescribeSchedulePaginator,
|
|
30
|
+
ListAlertsPaginator,
|
|
30
31
|
ListChannelPlacementGroupsPaginator,
|
|
31
32
|
ListChannelsPaginator,
|
|
32
33
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
33
34
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
35
|
+
ListClusterAlertsPaginator,
|
|
34
36
|
ListClustersPaginator,
|
|
35
37
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
36
38
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -38,6 +40,7 @@ from .paginator import (
|
|
|
38
40
|
ListInputDeviceTransfersPaginator,
|
|
39
41
|
ListInputSecurityGroupsPaginator,
|
|
40
42
|
ListInputsPaginator,
|
|
43
|
+
ListMultiplexAlertsPaginator,
|
|
41
44
|
ListMultiplexesPaginator,
|
|
42
45
|
ListMultiplexProgramsPaginator,
|
|
43
46
|
ListNetworksPaginator,
|
|
@@ -165,6 +168,8 @@ from .type_defs import (
|
|
|
165
168
|
GetEventBridgeRuleTemplateResponseTypeDef,
|
|
166
169
|
GetSignalMapRequestTypeDef,
|
|
167
170
|
GetSignalMapResponseTypeDef,
|
|
171
|
+
ListAlertsRequestTypeDef,
|
|
172
|
+
ListAlertsResponseTypeDef,
|
|
168
173
|
ListChannelPlacementGroupsRequestTypeDef,
|
|
169
174
|
ListChannelPlacementGroupsResponseTypeDef,
|
|
170
175
|
ListChannelsRequestTypeDef,
|
|
@@ -173,6 +178,8 @@ from .type_defs import (
|
|
|
173
178
|
ListCloudWatchAlarmTemplateGroupsResponseTypeDef,
|
|
174
179
|
ListCloudWatchAlarmTemplatesRequestTypeDef,
|
|
175
180
|
ListCloudWatchAlarmTemplatesResponseTypeDef,
|
|
181
|
+
ListClusterAlertsRequestTypeDef,
|
|
182
|
+
ListClusterAlertsResponseTypeDef,
|
|
176
183
|
ListClustersRequestTypeDef,
|
|
177
184
|
ListClustersResponseTypeDef,
|
|
178
185
|
ListEventBridgeRuleTemplateGroupsRequestTypeDef,
|
|
@@ -187,6 +194,8 @@ from .type_defs import (
|
|
|
187
194
|
ListInputSecurityGroupsResponseTypeDef,
|
|
188
195
|
ListInputsRequestTypeDef,
|
|
189
196
|
ListInputsResponseTypeDef,
|
|
197
|
+
ListMultiplexAlertsRequestTypeDef,
|
|
198
|
+
ListMultiplexAlertsResponseTypeDef,
|
|
190
199
|
ListMultiplexesRequestTypeDef,
|
|
191
200
|
ListMultiplexesResponseTypeDef,
|
|
192
201
|
ListMultiplexProgramsRequestTypeDef,
|
|
@@ -1539,6 +1548,34 @@ class MediaLiveClient(BaseClient):
|
|
|
1539
1548
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#update_sdi_source)
|
|
1540
1549
|
"""
|
|
1541
1550
|
|
|
1551
|
+
def list_alerts(self, **kwargs: Unpack[ListAlertsRequestTypeDef]) -> ListAlertsResponseTypeDef:
|
|
1552
|
+
"""
|
|
1553
|
+
List the alerts for a channel with optional filtering based on alert state.
|
|
1554
|
+
|
|
1555
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_alerts.html)
|
|
1556
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_alerts)
|
|
1557
|
+
"""
|
|
1558
|
+
|
|
1559
|
+
def list_cluster_alerts(
|
|
1560
|
+
self, **kwargs: Unpack[ListClusterAlertsRequestTypeDef]
|
|
1561
|
+
) -> ListClusterAlertsResponseTypeDef:
|
|
1562
|
+
"""
|
|
1563
|
+
List the alerts for a cluster with optional filtering based on alert state.
|
|
1564
|
+
|
|
1565
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_cluster_alerts.html)
|
|
1566
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_cluster_alerts)
|
|
1567
|
+
"""
|
|
1568
|
+
|
|
1569
|
+
def list_multiplex_alerts(
|
|
1570
|
+
self, **kwargs: Unpack[ListMultiplexAlertsRequestTypeDef]
|
|
1571
|
+
) -> ListMultiplexAlertsResponseTypeDef:
|
|
1572
|
+
"""
|
|
1573
|
+
List the alerts for a multiplex with optional filtering based on alert state.
|
|
1574
|
+
|
|
1575
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_multiplex_alerts.html)
|
|
1576
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_multiplex_alerts)
|
|
1577
|
+
"""
|
|
1578
|
+
|
|
1542
1579
|
@overload # type: ignore[override]
|
|
1543
1580
|
def get_paginator( # type: ignore[override]
|
|
1544
1581
|
self, operation_name: Literal["describe_schedule"]
|
|
@@ -1550,6 +1587,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1550
1587
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1551
1588
|
"""
|
|
1552
1589
|
|
|
1590
|
+
@overload # type: ignore[override]
|
|
1591
|
+
def get_paginator( # type: ignore[override]
|
|
1592
|
+
self, operation_name: Literal["list_alerts"]
|
|
1593
|
+
) -> ListAlertsPaginator:
|
|
1594
|
+
"""
|
|
1595
|
+
Create a paginator for an operation.
|
|
1596
|
+
|
|
1597
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1598
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1599
|
+
"""
|
|
1600
|
+
|
|
1553
1601
|
@overload # type: ignore[override]
|
|
1554
1602
|
def get_paginator( # type: ignore[override]
|
|
1555
1603
|
self, operation_name: Literal["list_channel_placement_groups"]
|
|
@@ -1594,6 +1642,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1594
1642
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1595
1643
|
"""
|
|
1596
1644
|
|
|
1645
|
+
@overload # type: ignore[override]
|
|
1646
|
+
def get_paginator( # type: ignore[override]
|
|
1647
|
+
self, operation_name: Literal["list_cluster_alerts"]
|
|
1648
|
+
) -> ListClusterAlertsPaginator:
|
|
1649
|
+
"""
|
|
1650
|
+
Create a paginator for an operation.
|
|
1651
|
+
|
|
1652
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1653
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1654
|
+
"""
|
|
1655
|
+
|
|
1597
1656
|
@overload # type: ignore[override]
|
|
1598
1657
|
def get_paginator( # type: ignore[override]
|
|
1599
1658
|
self, operation_name: Literal["list_clusters"]
|
|
@@ -1671,6 +1730,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1671
1730
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1672
1731
|
"""
|
|
1673
1732
|
|
|
1733
|
+
@overload # type: ignore[override]
|
|
1734
|
+
def get_paginator( # type: ignore[override]
|
|
1735
|
+
self, operation_name: Literal["list_multiplex_alerts"]
|
|
1736
|
+
) -> ListMultiplexAlertsPaginator:
|
|
1737
|
+
"""
|
|
1738
|
+
Create a paginator for an operation.
|
|
1739
|
+
|
|
1740
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1741
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1742
|
+
"""
|
|
1743
|
+
|
|
1674
1744
|
@overload # type: ignore[override]
|
|
1675
1745
|
def get_paginator( # type: ignore[override]
|
|
1676
1746
|
self, operation_name: Literal["list_multiplex_programs"]
|
types_boto3_medialive/client.pyi
CHANGED
|
@@ -27,10 +27,12 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
DescribeSchedulePaginator,
|
|
30
|
+
ListAlertsPaginator,
|
|
30
31
|
ListChannelPlacementGroupsPaginator,
|
|
31
32
|
ListChannelsPaginator,
|
|
32
33
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
33
34
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
35
|
+
ListClusterAlertsPaginator,
|
|
34
36
|
ListClustersPaginator,
|
|
35
37
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
36
38
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -38,6 +40,7 @@ from .paginator import (
|
|
|
38
40
|
ListInputDeviceTransfersPaginator,
|
|
39
41
|
ListInputSecurityGroupsPaginator,
|
|
40
42
|
ListInputsPaginator,
|
|
43
|
+
ListMultiplexAlertsPaginator,
|
|
41
44
|
ListMultiplexesPaginator,
|
|
42
45
|
ListMultiplexProgramsPaginator,
|
|
43
46
|
ListNetworksPaginator,
|
|
@@ -165,6 +168,8 @@ from .type_defs import (
|
|
|
165
168
|
GetEventBridgeRuleTemplateResponseTypeDef,
|
|
166
169
|
GetSignalMapRequestTypeDef,
|
|
167
170
|
GetSignalMapResponseTypeDef,
|
|
171
|
+
ListAlertsRequestTypeDef,
|
|
172
|
+
ListAlertsResponseTypeDef,
|
|
168
173
|
ListChannelPlacementGroupsRequestTypeDef,
|
|
169
174
|
ListChannelPlacementGroupsResponseTypeDef,
|
|
170
175
|
ListChannelsRequestTypeDef,
|
|
@@ -173,6 +178,8 @@ from .type_defs import (
|
|
|
173
178
|
ListCloudWatchAlarmTemplateGroupsResponseTypeDef,
|
|
174
179
|
ListCloudWatchAlarmTemplatesRequestTypeDef,
|
|
175
180
|
ListCloudWatchAlarmTemplatesResponseTypeDef,
|
|
181
|
+
ListClusterAlertsRequestTypeDef,
|
|
182
|
+
ListClusterAlertsResponseTypeDef,
|
|
176
183
|
ListClustersRequestTypeDef,
|
|
177
184
|
ListClustersResponseTypeDef,
|
|
178
185
|
ListEventBridgeRuleTemplateGroupsRequestTypeDef,
|
|
@@ -187,6 +194,8 @@ from .type_defs import (
|
|
|
187
194
|
ListInputSecurityGroupsResponseTypeDef,
|
|
188
195
|
ListInputsRequestTypeDef,
|
|
189
196
|
ListInputsResponseTypeDef,
|
|
197
|
+
ListMultiplexAlertsRequestTypeDef,
|
|
198
|
+
ListMultiplexAlertsResponseTypeDef,
|
|
190
199
|
ListMultiplexesRequestTypeDef,
|
|
191
200
|
ListMultiplexesResponseTypeDef,
|
|
192
201
|
ListMultiplexProgramsRequestTypeDef,
|
|
@@ -1536,6 +1545,34 @@ class MediaLiveClient(BaseClient):
|
|
|
1536
1545
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#update_sdi_source)
|
|
1537
1546
|
"""
|
|
1538
1547
|
|
|
1548
|
+
def list_alerts(self, **kwargs: Unpack[ListAlertsRequestTypeDef]) -> ListAlertsResponseTypeDef:
|
|
1549
|
+
"""
|
|
1550
|
+
List the alerts for a channel with optional filtering based on alert state.
|
|
1551
|
+
|
|
1552
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_alerts.html)
|
|
1553
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_alerts)
|
|
1554
|
+
"""
|
|
1555
|
+
|
|
1556
|
+
def list_cluster_alerts(
|
|
1557
|
+
self, **kwargs: Unpack[ListClusterAlertsRequestTypeDef]
|
|
1558
|
+
) -> ListClusterAlertsResponseTypeDef:
|
|
1559
|
+
"""
|
|
1560
|
+
List the alerts for a cluster with optional filtering based on alert state.
|
|
1561
|
+
|
|
1562
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_cluster_alerts.html)
|
|
1563
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_cluster_alerts)
|
|
1564
|
+
"""
|
|
1565
|
+
|
|
1566
|
+
def list_multiplex_alerts(
|
|
1567
|
+
self, **kwargs: Unpack[ListMultiplexAlertsRequestTypeDef]
|
|
1568
|
+
) -> ListMultiplexAlertsResponseTypeDef:
|
|
1569
|
+
"""
|
|
1570
|
+
List the alerts for a multiplex with optional filtering based on alert state.
|
|
1571
|
+
|
|
1572
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_multiplex_alerts.html)
|
|
1573
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_multiplex_alerts)
|
|
1574
|
+
"""
|
|
1575
|
+
|
|
1539
1576
|
@overload # type: ignore[override]
|
|
1540
1577
|
def get_paginator( # type: ignore[override]
|
|
1541
1578
|
self, operation_name: Literal["describe_schedule"]
|
|
@@ -1547,6 +1584,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1547
1584
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1548
1585
|
"""
|
|
1549
1586
|
|
|
1587
|
+
@overload # type: ignore[override]
|
|
1588
|
+
def get_paginator( # type: ignore[override]
|
|
1589
|
+
self, operation_name: Literal["list_alerts"]
|
|
1590
|
+
) -> ListAlertsPaginator:
|
|
1591
|
+
"""
|
|
1592
|
+
Create a paginator for an operation.
|
|
1593
|
+
|
|
1594
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1595
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1596
|
+
"""
|
|
1597
|
+
|
|
1550
1598
|
@overload # type: ignore[override]
|
|
1551
1599
|
def get_paginator( # type: ignore[override]
|
|
1552
1600
|
self, operation_name: Literal["list_channel_placement_groups"]
|
|
@@ -1591,6 +1639,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1591
1639
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1592
1640
|
"""
|
|
1593
1641
|
|
|
1642
|
+
@overload # type: ignore[override]
|
|
1643
|
+
def get_paginator( # type: ignore[override]
|
|
1644
|
+
self, operation_name: Literal["list_cluster_alerts"]
|
|
1645
|
+
) -> ListClusterAlertsPaginator:
|
|
1646
|
+
"""
|
|
1647
|
+
Create a paginator for an operation.
|
|
1648
|
+
|
|
1649
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1650
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1651
|
+
"""
|
|
1652
|
+
|
|
1594
1653
|
@overload # type: ignore[override]
|
|
1595
1654
|
def get_paginator( # type: ignore[override]
|
|
1596
1655
|
self, operation_name: Literal["list_clusters"]
|
|
@@ -1668,6 +1727,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1668
1727
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1669
1728
|
"""
|
|
1670
1729
|
|
|
1730
|
+
@overload # type: ignore[override]
|
|
1731
|
+
def get_paginator( # type: ignore[override]
|
|
1732
|
+
self, operation_name: Literal["list_multiplex_alerts"]
|
|
1733
|
+
) -> ListMultiplexAlertsPaginator:
|
|
1734
|
+
"""
|
|
1735
|
+
Create a paginator for an operation.
|
|
1736
|
+
|
|
1737
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1738
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1739
|
+
"""
|
|
1740
|
+
|
|
1671
1741
|
@overload # type: ignore[override]
|
|
1672
1742
|
def get_paginator( # type: ignore[override]
|
|
1673
1743
|
self, operation_name: Literal["list_multiplex_programs"]
|
|
@@ -67,6 +67,7 @@ __all__ = (
|
|
|
67
67
|
"BurnInShadowColorType",
|
|
68
68
|
"BurnInTeletextGridControlType",
|
|
69
69
|
"CdiInputResolutionType",
|
|
70
|
+
"ChannelAlertStateType",
|
|
70
71
|
"ChannelClassType",
|
|
71
72
|
"ChannelCreatedWaiterName",
|
|
72
73
|
"ChannelDeletedWaiterName",
|
|
@@ -82,6 +83,7 @@ __all__ = (
|
|
|
82
83
|
"CloudWatchAlarmTemplateStatisticType",
|
|
83
84
|
"CloudWatchAlarmTemplateTargetResourceTypeType",
|
|
84
85
|
"CloudWatchAlarmTemplateTreatMissingDataType",
|
|
86
|
+
"ClusterAlertStateType",
|
|
85
87
|
"ClusterCreatedWaiterName",
|
|
86
88
|
"ClusterDeletedWaiterName",
|
|
87
89
|
"ClusterStateType",
|
|
@@ -252,10 +254,12 @@ __all__ = (
|
|
|
252
254
|
"InputTimecodeSourceType",
|
|
253
255
|
"InputTypeType",
|
|
254
256
|
"LastFrameClippingBehaviorType",
|
|
257
|
+
"ListAlertsPaginatorName",
|
|
255
258
|
"ListChannelPlacementGroupsPaginatorName",
|
|
256
259
|
"ListChannelsPaginatorName",
|
|
257
260
|
"ListCloudWatchAlarmTemplateGroupsPaginatorName",
|
|
258
261
|
"ListCloudWatchAlarmTemplatesPaginatorName",
|
|
262
|
+
"ListClusterAlertsPaginatorName",
|
|
259
263
|
"ListClustersPaginatorName",
|
|
260
264
|
"ListEventBridgeRuleTemplateGroupsPaginatorName",
|
|
261
265
|
"ListEventBridgeRuleTemplatesPaginatorName",
|
|
@@ -263,6 +267,7 @@ __all__ = (
|
|
|
263
267
|
"ListInputDevicesPaginatorName",
|
|
264
268
|
"ListInputSecurityGroupsPaginatorName",
|
|
265
269
|
"ListInputsPaginatorName",
|
|
270
|
+
"ListMultiplexAlertsPaginatorName",
|
|
266
271
|
"ListMultiplexProgramsPaginatorName",
|
|
267
272
|
"ListMultiplexesPaginatorName",
|
|
268
273
|
"ListNetworksPaginatorName",
|
|
@@ -309,6 +314,7 @@ __all__ = (
|
|
|
309
314
|
"Mpeg2SubGopLengthType",
|
|
310
315
|
"Mpeg2TimecodeInsertionBehaviorType",
|
|
311
316
|
"MsSmoothH265PackagingTypeType",
|
|
317
|
+
"MultiplexAlertStateType",
|
|
312
318
|
"MultiplexCreatedWaiterName",
|
|
313
319
|
"MultiplexDeletedWaiterName",
|
|
314
320
|
"MultiplexRunningWaiterName",
|
|
@@ -488,6 +494,7 @@ BurnInOutlineColorType = Literal["BLACK", "BLUE", "GREEN", "RED", "WHITE", "YELL
|
|
|
488
494
|
BurnInShadowColorType = Literal["BLACK", "NONE", "WHITE"]
|
|
489
495
|
BurnInTeletextGridControlType = Literal["FIXED", "SCALED"]
|
|
490
496
|
CdiInputResolutionType = Literal["FHD", "HD", "SD", "UHD"]
|
|
497
|
+
ChannelAlertStateType = Literal["CLEARED", "SET"]
|
|
491
498
|
ChannelClassType = Literal["SINGLE_PIPELINE", "STANDARD"]
|
|
492
499
|
ChannelCreatedWaiterName = Literal["channel_created"]
|
|
493
500
|
ChannelDeletedWaiterName = Literal["channel_deleted"]
|
|
@@ -536,6 +543,7 @@ CloudWatchAlarmTemplateTargetResourceTypeType = Literal[
|
|
|
536
543
|
CloudWatchAlarmTemplateTreatMissingDataType = Literal[
|
|
537
544
|
"breaching", "ignore", "missing", "notBreaching"
|
|
538
545
|
]
|
|
546
|
+
ClusterAlertStateType = Literal["CLEARED", "SET"]
|
|
539
547
|
ClusterCreatedWaiterName = Literal["cluster_created"]
|
|
540
548
|
ClusterDeletedWaiterName = Literal["cluster_deleted"]
|
|
541
549
|
ClusterStateType = Literal[
|
|
@@ -854,10 +862,12 @@ InputTypeType = Literal[
|
|
|
854
862
|
"URL_PULL",
|
|
855
863
|
]
|
|
856
864
|
LastFrameClippingBehaviorType = Literal["EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"]
|
|
865
|
+
ListAlertsPaginatorName = Literal["list_alerts"]
|
|
857
866
|
ListChannelPlacementGroupsPaginatorName = Literal["list_channel_placement_groups"]
|
|
858
867
|
ListChannelsPaginatorName = Literal["list_channels"]
|
|
859
868
|
ListCloudWatchAlarmTemplateGroupsPaginatorName = Literal["list_cloud_watch_alarm_template_groups"]
|
|
860
869
|
ListCloudWatchAlarmTemplatesPaginatorName = Literal["list_cloud_watch_alarm_templates"]
|
|
870
|
+
ListClusterAlertsPaginatorName = Literal["list_cluster_alerts"]
|
|
861
871
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
862
872
|
ListEventBridgeRuleTemplateGroupsPaginatorName = Literal["list_event_bridge_rule_template_groups"]
|
|
863
873
|
ListEventBridgeRuleTemplatesPaginatorName = Literal["list_event_bridge_rule_templates"]
|
|
@@ -865,6 +875,7 @@ ListInputDeviceTransfersPaginatorName = Literal["list_input_device_transfers"]
|
|
|
865
875
|
ListInputDevicesPaginatorName = Literal["list_input_devices"]
|
|
866
876
|
ListInputSecurityGroupsPaginatorName = Literal["list_input_security_groups"]
|
|
867
877
|
ListInputsPaginatorName = Literal["list_inputs"]
|
|
878
|
+
ListMultiplexAlertsPaginatorName = Literal["list_multiplex_alerts"]
|
|
868
879
|
ListMultiplexProgramsPaginatorName = Literal["list_multiplex_programs"]
|
|
869
880
|
ListMultiplexesPaginatorName = Literal["list_multiplexes"]
|
|
870
881
|
ListNetworksPaginatorName = Literal["list_networks"]
|
|
@@ -914,6 +925,7 @@ Mpeg2ScanTypeType = Literal["INTERLACED", "PROGRESSIVE"]
|
|
|
914
925
|
Mpeg2SubGopLengthType = Literal["DYNAMIC", "FIXED"]
|
|
915
926
|
Mpeg2TimecodeInsertionBehaviorType = Literal["DISABLED", "GOP_TIMECODE"]
|
|
916
927
|
MsSmoothH265PackagingTypeType = Literal["HEV1", "HVC1"]
|
|
928
|
+
MultiplexAlertStateType = Literal["CLEARED", "SET"]
|
|
917
929
|
MultiplexCreatedWaiterName = Literal["multiplex_created"]
|
|
918
930
|
MultiplexDeletedWaiterName = Literal["multiplex_deleted"]
|
|
919
931
|
MultiplexRunningWaiterName = Literal["multiplex_running"]
|
|
@@ -1437,6 +1449,7 @@ ServiceName = Literal[
|
|
|
1437
1449
|
"route53domains",
|
|
1438
1450
|
"route53profiles",
|
|
1439
1451
|
"route53resolver",
|
|
1452
|
+
"rtbfabric",
|
|
1440
1453
|
"rum",
|
|
1441
1454
|
"s3",
|
|
1442
1455
|
"s3control",
|
|
@@ -1522,10 +1535,12 @@ ResourceServiceName = Literal[
|
|
|
1522
1535
|
]
|
|
1523
1536
|
PaginatorName = Literal[
|
|
1524
1537
|
"describe_schedule",
|
|
1538
|
+
"list_alerts",
|
|
1525
1539
|
"list_channel_placement_groups",
|
|
1526
1540
|
"list_channels",
|
|
1527
1541
|
"list_cloud_watch_alarm_template_groups",
|
|
1528
1542
|
"list_cloud_watch_alarm_templates",
|
|
1543
|
+
"list_cluster_alerts",
|
|
1529
1544
|
"list_clusters",
|
|
1530
1545
|
"list_event_bridge_rule_template_groups",
|
|
1531
1546
|
"list_event_bridge_rule_templates",
|
|
@@ -1533,6 +1548,7 @@ PaginatorName = Literal[
|
|
|
1533
1548
|
"list_input_devices",
|
|
1534
1549
|
"list_input_security_groups",
|
|
1535
1550
|
"list_inputs",
|
|
1551
|
+
"list_multiplex_alerts",
|
|
1536
1552
|
"list_multiplex_programs",
|
|
1537
1553
|
"list_multiplexes",
|
|
1538
1554
|
"list_networks",
|