types-boto3-medialive 1.40.45__py3-none-any.whl → 1.40.74__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 +4 -4
- types_boto3_medialive/client.py +93 -28
- types_boto3_medialive/client.pyi +93 -28
- types_boto3_medialive/literals.py +16 -7
- types_boto3_medialive/literals.pyi +16 -7
- types_boto3_medialive/paginator.py +78 -0
- types_boto3_medialive/paginator.pyi +69 -0
- types_boto3_medialive/type_defs.py +400 -302
- types_boto3_medialive/type_defs.pyi +388 -302
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/METADATA +21 -25
- types_boto3_medialive-1.40.74.dist-info/RECORD +20 -0
- types_boto3_medialive-1.40.45.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.40.45.dist-info → types_boto3_medialive-1.40.74.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,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.40.
|
|
16
|
-
"Version: 1.40.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 MediaLive 1.40.74\n"
|
|
16
|
+
"Version: 1.40.74\n"
|
|
17
|
+
"Builder version: 8.12.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"
|
|
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.40.
|
|
29
|
+
sys.stdout.write("1.40.74\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_medialive/client.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -27,10 +28,12 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
28
|
|
|
28
29
|
from .paginator import (
|
|
29
30
|
DescribeSchedulePaginator,
|
|
31
|
+
ListAlertsPaginator,
|
|
30
32
|
ListChannelPlacementGroupsPaginator,
|
|
31
33
|
ListChannelsPaginator,
|
|
32
34
|
ListCloudWatchAlarmTemplateGroupsPaginator,
|
|
33
35
|
ListCloudWatchAlarmTemplatesPaginator,
|
|
36
|
+
ListClusterAlertsPaginator,
|
|
34
37
|
ListClustersPaginator,
|
|
35
38
|
ListEventBridgeRuleTemplateGroupsPaginator,
|
|
36
39
|
ListEventBridgeRuleTemplatesPaginator,
|
|
@@ -38,6 +41,7 @@ from .paginator import (
|
|
|
38
41
|
ListInputDeviceTransfersPaginator,
|
|
39
42
|
ListInputSecurityGroupsPaginator,
|
|
40
43
|
ListInputsPaginator,
|
|
44
|
+
ListMultiplexAlertsPaginator,
|
|
41
45
|
ListMultiplexesPaginator,
|
|
42
46
|
ListMultiplexProgramsPaginator,
|
|
43
47
|
ListNetworksPaginator,
|
|
@@ -165,6 +169,8 @@ from .type_defs import (
|
|
|
165
169
|
GetEventBridgeRuleTemplateResponseTypeDef,
|
|
166
170
|
GetSignalMapRequestTypeDef,
|
|
167
171
|
GetSignalMapResponseTypeDef,
|
|
172
|
+
ListAlertsRequestTypeDef,
|
|
173
|
+
ListAlertsResponseTypeDef,
|
|
168
174
|
ListChannelPlacementGroupsRequestTypeDef,
|
|
169
175
|
ListChannelPlacementGroupsResponseTypeDef,
|
|
170
176
|
ListChannelsRequestTypeDef,
|
|
@@ -173,6 +179,8 @@ from .type_defs import (
|
|
|
173
179
|
ListCloudWatchAlarmTemplateGroupsResponseTypeDef,
|
|
174
180
|
ListCloudWatchAlarmTemplatesRequestTypeDef,
|
|
175
181
|
ListCloudWatchAlarmTemplatesResponseTypeDef,
|
|
182
|
+
ListClusterAlertsRequestTypeDef,
|
|
183
|
+
ListClusterAlertsResponseTypeDef,
|
|
176
184
|
ListClustersRequestTypeDef,
|
|
177
185
|
ListClustersResponseTypeDef,
|
|
178
186
|
ListEventBridgeRuleTemplateGroupsRequestTypeDef,
|
|
@@ -187,6 +195,8 @@ from .type_defs import (
|
|
|
187
195
|
ListInputSecurityGroupsResponseTypeDef,
|
|
188
196
|
ListInputsRequestTypeDef,
|
|
189
197
|
ListInputsResponseTypeDef,
|
|
198
|
+
ListMultiplexAlertsRequestTypeDef,
|
|
199
|
+
ListMultiplexAlertsResponseTypeDef,
|
|
190
200
|
ListMultiplexesRequestTypeDef,
|
|
191
201
|
ListMultiplexesResponseTypeDef,
|
|
192
202
|
ListMultiplexProgramsRequestTypeDef,
|
|
@@ -294,12 +304,6 @@ from .waiter import (
|
|
|
294
304
|
SignalMapUpdatedWaiter,
|
|
295
305
|
)
|
|
296
306
|
|
|
297
|
-
if sys.version_info >= (3, 9):
|
|
298
|
-
from builtins import dict as Dict
|
|
299
|
-
from builtins import type as Type
|
|
300
|
-
from collections.abc import Mapping
|
|
301
|
-
else:
|
|
302
|
-
from typing import Dict, Mapping, Type
|
|
303
307
|
if sys.version_info >= (3, 12):
|
|
304
308
|
from typing import Literal, Unpack
|
|
305
309
|
else:
|
|
@@ -310,16 +314,16 @@ __all__ = ("MediaLiveClient",)
|
|
|
310
314
|
|
|
311
315
|
|
|
312
316
|
class Exceptions(BaseClientExceptions):
|
|
313
|
-
BadGatewayException:
|
|
314
|
-
BadRequestException:
|
|
315
|
-
ClientError:
|
|
316
|
-
ConflictException:
|
|
317
|
-
ForbiddenException:
|
|
318
|
-
GatewayTimeoutException:
|
|
319
|
-
InternalServerErrorException:
|
|
320
|
-
NotFoundException:
|
|
321
|
-
TooManyRequestsException:
|
|
322
|
-
UnprocessableEntityException:
|
|
317
|
+
BadGatewayException: type[BotocoreClientError]
|
|
318
|
+
BadRequestException: type[BotocoreClientError]
|
|
319
|
+
ClientError: type[BotocoreClientError]
|
|
320
|
+
ConflictException: type[BotocoreClientError]
|
|
321
|
+
ForbiddenException: type[BotocoreClientError]
|
|
322
|
+
GatewayTimeoutException: type[BotocoreClientError]
|
|
323
|
+
InternalServerErrorException: type[BotocoreClientError]
|
|
324
|
+
NotFoundException: type[BotocoreClientError]
|
|
325
|
+
TooManyRequestsException: type[BotocoreClientError]
|
|
326
|
+
UnprocessableEntityException: type[BotocoreClientError]
|
|
323
327
|
|
|
324
328
|
|
|
325
329
|
class MediaLiveClient(BaseClient):
|
|
@@ -359,7 +363,7 @@ class MediaLiveClient(BaseClient):
|
|
|
359
363
|
|
|
360
364
|
def accept_input_device_transfer(
|
|
361
365
|
self, **kwargs: Unpack[AcceptInputDeviceTransferRequestTypeDef]
|
|
362
|
-
) ->
|
|
366
|
+
) -> dict[str, Any]:
|
|
363
367
|
"""
|
|
364
368
|
Accept an incoming input device transfer.
|
|
365
369
|
|
|
@@ -405,7 +409,7 @@ class MediaLiveClient(BaseClient):
|
|
|
405
409
|
|
|
406
410
|
def cancel_input_device_transfer(
|
|
407
411
|
self, **kwargs: Unpack[CancelInputDeviceTransferRequestTypeDef]
|
|
408
|
-
) ->
|
|
412
|
+
) -> dict[str, Any]:
|
|
409
413
|
"""
|
|
410
414
|
Cancel an input device transfer that you have requested.
|
|
411
415
|
|
|
@@ -413,7 +417,7 @@ class MediaLiveClient(BaseClient):
|
|
|
413
417
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#cancel_input_device_transfer)
|
|
414
418
|
"""
|
|
415
419
|
|
|
416
|
-
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) ->
|
|
420
|
+
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
417
421
|
"""
|
|
418
422
|
Send a request to claim an AWS Elemental device that you have purchased from a
|
|
419
423
|
third-party vendor.
|
|
@@ -502,7 +506,7 @@ class MediaLiveClient(BaseClient):
|
|
|
502
506
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_channel)
|
|
503
507
|
"""
|
|
504
508
|
|
|
505
|
-
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) ->
|
|
509
|
+
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) -> dict[str, Any]:
|
|
506
510
|
"""
|
|
507
511
|
Deletes the input end point.
|
|
508
512
|
|
|
@@ -512,7 +516,7 @@ class MediaLiveClient(BaseClient):
|
|
|
512
516
|
|
|
513
517
|
def delete_input_security_group(
|
|
514
518
|
self, **kwargs: Unpack[DeleteInputSecurityGroupRequestTypeDef]
|
|
515
|
-
) ->
|
|
519
|
+
) -> dict[str, Any]:
|
|
516
520
|
"""
|
|
517
521
|
Deletes an Input Security Group.
|
|
518
522
|
|
|
@@ -550,7 +554,7 @@ class MediaLiveClient(BaseClient):
|
|
|
550
554
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_reservation)
|
|
551
555
|
"""
|
|
552
556
|
|
|
553
|
-
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) ->
|
|
557
|
+
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) -> dict[str, Any]:
|
|
554
558
|
"""
|
|
555
559
|
Delete all schedule actions on a channel.
|
|
556
560
|
|
|
@@ -796,7 +800,7 @@ class MediaLiveClient(BaseClient):
|
|
|
796
800
|
|
|
797
801
|
def reboot_input_device(
|
|
798
802
|
self, **kwargs: Unpack[RebootInputDeviceRequestTypeDef]
|
|
799
|
-
) ->
|
|
803
|
+
) -> dict[str, Any]:
|
|
800
804
|
"""
|
|
801
805
|
Send a reboot command to the specified input device.
|
|
802
806
|
|
|
@@ -806,7 +810,7 @@ class MediaLiveClient(BaseClient):
|
|
|
806
810
|
|
|
807
811
|
def reject_input_device_transfer(
|
|
808
812
|
self, **kwargs: Unpack[RejectInputDeviceTransferRequestTypeDef]
|
|
809
|
-
) ->
|
|
813
|
+
) -> dict[str, Any]:
|
|
810
814
|
"""
|
|
811
815
|
Reject the transfer of the specified input device to your AWS account.
|
|
812
816
|
|
|
@@ -826,7 +830,7 @@ class MediaLiveClient(BaseClient):
|
|
|
826
830
|
|
|
827
831
|
def start_input_device(
|
|
828
832
|
self, **kwargs: Unpack[StartInputDeviceRequestTypeDef]
|
|
829
|
-
) ->
|
|
833
|
+
) -> dict[str, Any]:
|
|
830
834
|
"""
|
|
831
835
|
Start an input device that is attached to a MediaConnect flow.
|
|
832
836
|
|
|
@@ -836,7 +840,7 @@ class MediaLiveClient(BaseClient):
|
|
|
836
840
|
|
|
837
841
|
def start_input_device_maintenance_window(
|
|
838
842
|
self, **kwargs: Unpack[StartInputDeviceMaintenanceWindowRequestTypeDef]
|
|
839
|
-
) ->
|
|
843
|
+
) -> dict[str, Any]:
|
|
840
844
|
"""
|
|
841
845
|
Start a maintenance window for the specified input device.
|
|
842
846
|
|
|
@@ -864,7 +868,7 @@ class MediaLiveClient(BaseClient):
|
|
|
864
868
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#stop_channel)
|
|
865
869
|
"""
|
|
866
870
|
|
|
867
|
-
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) ->
|
|
871
|
+
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
868
872
|
"""
|
|
869
873
|
Stop an input device that is attached to a MediaConnect flow.
|
|
870
874
|
|
|
@@ -884,7 +888,7 @@ class MediaLiveClient(BaseClient):
|
|
|
884
888
|
|
|
885
889
|
def transfer_input_device(
|
|
886
890
|
self, **kwargs: Unpack[TransferInputDeviceRequestTypeDef]
|
|
887
|
-
) ->
|
|
891
|
+
) -> dict[str, Any]:
|
|
888
892
|
"""
|
|
889
893
|
Start an input device transfer to another AWS account.
|
|
890
894
|
|
|
@@ -1539,6 +1543,34 @@ class MediaLiveClient(BaseClient):
|
|
|
1539
1543
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#update_sdi_source)
|
|
1540
1544
|
"""
|
|
1541
1545
|
|
|
1546
|
+
def list_alerts(self, **kwargs: Unpack[ListAlertsRequestTypeDef]) -> ListAlertsResponseTypeDef:
|
|
1547
|
+
"""
|
|
1548
|
+
List the alerts for a channel with optional filtering based on alert state.
|
|
1549
|
+
|
|
1550
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_alerts.html)
|
|
1551
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_alerts)
|
|
1552
|
+
"""
|
|
1553
|
+
|
|
1554
|
+
def list_cluster_alerts(
|
|
1555
|
+
self, **kwargs: Unpack[ListClusterAlertsRequestTypeDef]
|
|
1556
|
+
) -> ListClusterAlertsResponseTypeDef:
|
|
1557
|
+
"""
|
|
1558
|
+
List the alerts for a cluster with optional filtering based on alert state.
|
|
1559
|
+
|
|
1560
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_cluster_alerts.html)
|
|
1561
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_cluster_alerts)
|
|
1562
|
+
"""
|
|
1563
|
+
|
|
1564
|
+
def list_multiplex_alerts(
|
|
1565
|
+
self, **kwargs: Unpack[ListMultiplexAlertsRequestTypeDef]
|
|
1566
|
+
) -> ListMultiplexAlertsResponseTypeDef:
|
|
1567
|
+
"""
|
|
1568
|
+
List the alerts for a multiplex with optional filtering based on alert state.
|
|
1569
|
+
|
|
1570
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/list_multiplex_alerts.html)
|
|
1571
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#list_multiplex_alerts)
|
|
1572
|
+
"""
|
|
1573
|
+
|
|
1542
1574
|
@overload # type: ignore[override]
|
|
1543
1575
|
def get_paginator( # type: ignore[override]
|
|
1544
1576
|
self, operation_name: Literal["describe_schedule"]
|
|
@@ -1550,6 +1582,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1550
1582
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1551
1583
|
"""
|
|
1552
1584
|
|
|
1585
|
+
@overload # type: ignore[override]
|
|
1586
|
+
def get_paginator( # type: ignore[override]
|
|
1587
|
+
self, operation_name: Literal["list_alerts"]
|
|
1588
|
+
) -> ListAlertsPaginator:
|
|
1589
|
+
"""
|
|
1590
|
+
Create a paginator for an operation.
|
|
1591
|
+
|
|
1592
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1593
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1594
|
+
"""
|
|
1595
|
+
|
|
1553
1596
|
@overload # type: ignore[override]
|
|
1554
1597
|
def get_paginator( # type: ignore[override]
|
|
1555
1598
|
self, operation_name: Literal["list_channel_placement_groups"]
|
|
@@ -1594,6 +1637,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1594
1637
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1595
1638
|
"""
|
|
1596
1639
|
|
|
1640
|
+
@overload # type: ignore[override]
|
|
1641
|
+
def get_paginator( # type: ignore[override]
|
|
1642
|
+
self, operation_name: Literal["list_cluster_alerts"]
|
|
1643
|
+
) -> ListClusterAlertsPaginator:
|
|
1644
|
+
"""
|
|
1645
|
+
Create a paginator for an operation.
|
|
1646
|
+
|
|
1647
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1648
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1649
|
+
"""
|
|
1650
|
+
|
|
1597
1651
|
@overload # type: ignore[override]
|
|
1598
1652
|
def get_paginator( # type: ignore[override]
|
|
1599
1653
|
self, operation_name: Literal["list_clusters"]
|
|
@@ -1671,6 +1725,17 @@ class MediaLiveClient(BaseClient):
|
|
|
1671
1725
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1672
1726
|
"""
|
|
1673
1727
|
|
|
1728
|
+
@overload # type: ignore[override]
|
|
1729
|
+
def get_paginator( # type: ignore[override]
|
|
1730
|
+
self, operation_name: Literal["list_multiplex_alerts"]
|
|
1731
|
+
) -> ListMultiplexAlertsPaginator:
|
|
1732
|
+
"""
|
|
1733
|
+
Create a paginator for an operation.
|
|
1734
|
+
|
|
1735
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive/client/get_paginator.html)
|
|
1736
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#get_paginator)
|
|
1737
|
+
"""
|
|
1738
|
+
|
|
1674
1739
|
@overload # type: ignore[override]
|
|
1675
1740
|
def get_paginator( # type: ignore[override]
|
|
1676
1741
|
self, operation_name: Literal["list_multiplex_programs"]
|