aws-sdk-medialive 1.140.0 → 1.142.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +96 -1
- data/lib/aws-sdk-medialive/client_api.rb +52 -0
- data/lib/aws-sdk-medialive/types.rb +133 -12
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +26 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +36 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5d49b63a6198faed30794b389a5003d1ae564201b7ed3f358f8aecaee6a3ed9
|
4
|
+
data.tar.gz: 8aed8e552140bb2d1a94d1974441e1441f3cb163072a19f8d83ef86e03cc4d14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02ac204e80d5d5b1cc1e7c820d412afe275da256a5d34056dbd22750821a2df9037742f5fb76a313258470581170b02880e25f17713a74f68fbab9815881da79
|
7
|
+
data.tar.gz: 96256a7f0ba262f7b9463f83e4273e429dd6eb475511b4effe4b3e9a639f619a77a9f82ecd3a1e8e8cd934d5c50dce4d00e6cbbf78c6277194a931ccad5009e5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.142.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.141.0 (2024-12-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - MediaLive is releasing ListVersions api
|
13
|
+
|
4
14
|
1.140.0 (2024-12-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.142.0
|
@@ -257,11 +257,34 @@ module Aws::MediaLive
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1024,6 +1047,10 @@ module Aws::MediaLive
|
|
1024
1047
|
# @option params [Types::AnywhereSettings] :anywhere_settings
|
1025
1048
|
# Elemental anywhere settings
|
1026
1049
|
#
|
1050
|
+
# @option params [Types::ChannelEngineVersionRequest] :channel_engine_version
|
1051
|
+
#
|
1052
|
+
# @option params [Boolean] :dry_run
|
1053
|
+
#
|
1027
1054
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1028
1055
|
#
|
1029
1056
|
# * {Types::CreateChannelResponse#channel #channel} => Types::Channel
|
@@ -1810,6 +1837,8 @@ module Aws::MediaLive
|
|
1810
1837
|
# resp.channel.pipeline_details[0].active_motion_graphics_action_name #=> String
|
1811
1838
|
# resp.channel.pipeline_details[0].active_motion_graphics_uri #=> String
|
1812
1839
|
# resp.channel.pipeline_details[0].pipeline_id #=> String
|
1840
|
+
# resp.channel.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
1841
|
+
# resp.channel.pipeline_details[0].channel_engine_version.version #=> String
|
1813
1842
|
# resp.channel.pipelines_running_count #=> Integer
|
1814
1843
|
# resp.channel.role_arn #=> String
|
1815
1844
|
# resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -1825,6 +1854,8 @@ module Aws::MediaLive
|
|
1825
1854
|
# resp.channel.vpc.subnet_ids[0] #=> String
|
1826
1855
|
# resp.channel.anywhere_settings.channel_placement_group_id #=> String
|
1827
1856
|
# resp.channel.anywhere_settings.cluster_id #=> String
|
1857
|
+
# resp.channel.channel_engine_version.expiration_date #=> Time
|
1858
|
+
# resp.channel.channel_engine_version.version #=> String
|
1828
1859
|
#
|
1829
1860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
|
1830
1861
|
#
|
@@ -2340,6 +2371,7 @@ module Aws::MediaLive
|
|
2340
2371
|
# * {Types::DeleteChannelResponse#tags #tags} => Hash<String,String>
|
2341
2372
|
# * {Types::DeleteChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
2342
2373
|
# * {Types::DeleteChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
|
2374
|
+
# * {Types::DeleteChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
|
2343
2375
|
#
|
2344
2376
|
# @example Request syntax with placeholder values
|
2345
2377
|
#
|
@@ -3129,6 +3161,8 @@ module Aws::MediaLive
|
|
3129
3161
|
# resp.pipeline_details[0].active_motion_graphics_action_name #=> String
|
3130
3162
|
# resp.pipeline_details[0].active_motion_graphics_uri #=> String
|
3131
3163
|
# resp.pipeline_details[0].pipeline_id #=> String
|
3164
|
+
# resp.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
3165
|
+
# resp.pipeline_details[0].channel_engine_version.version #=> String
|
3132
3166
|
# resp.pipelines_running_count #=> Integer
|
3133
3167
|
# resp.role_arn #=> String
|
3134
3168
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -3144,6 +3178,8 @@ module Aws::MediaLive
|
|
3144
3178
|
# resp.vpc.subnet_ids[0] #=> String
|
3145
3179
|
# resp.anywhere_settings.channel_placement_group_id #=> String
|
3146
3180
|
# resp.anywhere_settings.cluster_id #=> String
|
3181
|
+
# resp.channel_engine_version.expiration_date #=> Time
|
3182
|
+
# resp.channel_engine_version.version #=> String
|
3147
3183
|
#
|
3148
3184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannel AWS API Documentation
|
3149
3185
|
#
|
@@ -3476,6 +3512,7 @@ module Aws::MediaLive
|
|
3476
3512
|
# * {Types::DescribeChannelResponse#tags #tags} => Hash<String,String>
|
3477
3513
|
# * {Types::DescribeChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
3478
3514
|
# * {Types::DescribeChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
|
3515
|
+
# * {Types::DescribeChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
|
3479
3516
|
#
|
3480
3517
|
# @example Request syntax with placeholder values
|
3481
3518
|
#
|
@@ -4265,6 +4302,8 @@ module Aws::MediaLive
|
|
4265
4302
|
# resp.pipeline_details[0].active_motion_graphics_action_name #=> String
|
4266
4303
|
# resp.pipeline_details[0].active_motion_graphics_uri #=> String
|
4267
4304
|
# resp.pipeline_details[0].pipeline_id #=> String
|
4305
|
+
# resp.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
4306
|
+
# resp.pipeline_details[0].channel_engine_version.version #=> String
|
4268
4307
|
# resp.pipelines_running_count #=> Integer
|
4269
4308
|
# resp.role_arn #=> String
|
4270
4309
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -4280,6 +4319,8 @@ module Aws::MediaLive
|
|
4280
4319
|
# resp.vpc.subnet_ids[0] #=> String
|
4281
4320
|
# resp.anywhere_settings.channel_placement_group_id #=> String
|
4282
4321
|
# resp.anywhere_settings.cluster_id #=> String
|
4322
|
+
# resp.channel_engine_version.expiration_date #=> Time
|
4323
|
+
# resp.channel_engine_version.version #=> String
|
4283
4324
|
#
|
4284
4325
|
#
|
4285
4326
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5102,6 +5143,11 @@ module Aws::MediaLive
|
|
5102
5143
|
# resp.channels[0].vpc.subnet_ids[0] #=> String
|
5103
5144
|
# resp.channels[0].anywhere_settings.channel_placement_group_id #=> String
|
5104
5145
|
# resp.channels[0].anywhere_settings.cluster_id #=> String
|
5146
|
+
# resp.channels[0].channel_engine_version.expiration_date #=> Time
|
5147
|
+
# resp.channels[0].channel_engine_version.version #=> String
|
5148
|
+
# resp.channels[0].used_channel_engine_versions #=> Array
|
5149
|
+
# resp.channels[0].used_channel_engine_versions[0].expiration_date #=> Time
|
5150
|
+
# resp.channels[0].used_channel_engine_versions[0].version #=> String
|
5105
5151
|
# resp.next_token #=> String
|
5106
5152
|
#
|
5107
5153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannels AWS API Documentation
|
@@ -5793,6 +5839,7 @@ module Aws::MediaLive
|
|
5793
5839
|
# * {Types::StartChannelResponse#tags #tags} => Hash<String,String>
|
5794
5840
|
# * {Types::StartChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
5795
5841
|
# * {Types::StartChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
|
5842
|
+
# * {Types::StartChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
|
5796
5843
|
#
|
5797
5844
|
# @example Request syntax with placeholder values
|
5798
5845
|
#
|
@@ -6582,6 +6629,8 @@ module Aws::MediaLive
|
|
6582
6629
|
# resp.pipeline_details[0].active_motion_graphics_action_name #=> String
|
6583
6630
|
# resp.pipeline_details[0].active_motion_graphics_uri #=> String
|
6584
6631
|
# resp.pipeline_details[0].pipeline_id #=> String
|
6632
|
+
# resp.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
6633
|
+
# resp.pipeline_details[0].channel_engine_version.version #=> String
|
6585
6634
|
# resp.pipelines_running_count #=> Integer
|
6586
6635
|
# resp.role_arn #=> String
|
6587
6636
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -6597,6 +6646,8 @@ module Aws::MediaLive
|
|
6597
6646
|
# resp.vpc.subnet_ids[0] #=> String
|
6598
6647
|
# resp.anywhere_settings.channel_placement_group_id #=> String
|
6599
6648
|
# resp.anywhere_settings.cluster_id #=> String
|
6649
|
+
# resp.channel_engine_version.expiration_date #=> Time
|
6650
|
+
# resp.channel_engine_version.version #=> String
|
6600
6651
|
#
|
6601
6652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannel AWS API Documentation
|
6602
6653
|
#
|
@@ -6736,6 +6787,7 @@ module Aws::MediaLive
|
|
6736
6787
|
# * {Types::StopChannelResponse#tags #tags} => Hash<String,String>
|
6737
6788
|
# * {Types::StopChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
6738
6789
|
# * {Types::StopChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
|
6790
|
+
# * {Types::StopChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
|
6739
6791
|
#
|
6740
6792
|
# @example Request syntax with placeholder values
|
6741
6793
|
#
|
@@ -7525,6 +7577,8 @@ module Aws::MediaLive
|
|
7525
7577
|
# resp.pipeline_details[0].active_motion_graphics_action_name #=> String
|
7526
7578
|
# resp.pipeline_details[0].active_motion_graphics_uri #=> String
|
7527
7579
|
# resp.pipeline_details[0].pipeline_id #=> String
|
7580
|
+
# resp.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
7581
|
+
# resp.pipeline_details[0].channel_engine_version.version #=> String
|
7528
7582
|
# resp.pipelines_running_count #=> Integer
|
7529
7583
|
# resp.role_arn #=> String
|
7530
7584
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -7540,6 +7594,8 @@ module Aws::MediaLive
|
|
7540
7594
|
# resp.vpc.subnet_ids[0] #=> String
|
7541
7595
|
# resp.anywhere_settings.channel_placement_group_id #=> String
|
7542
7596
|
# resp.anywhere_settings.cluster_id #=> String
|
7597
|
+
# resp.channel_engine_version.expiration_date #=> Time
|
7598
|
+
# resp.channel_engine_version.version #=> String
|
7543
7599
|
#
|
7544
7600
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannel AWS API Documentation
|
7545
7601
|
#
|
@@ -7709,6 +7765,10 @@ module Aws::MediaLive
|
|
7709
7765
|
#
|
7710
7766
|
# @option params [String] :role_arn
|
7711
7767
|
#
|
7768
|
+
# @option params [Types::ChannelEngineVersionRequest] :channel_engine_version
|
7769
|
+
#
|
7770
|
+
# @option params [Boolean] :dry_run
|
7771
|
+
#
|
7712
7772
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7713
7773
|
#
|
7714
7774
|
# * {Types::UpdateChannelResponse#channel #channel} => Types::Channel
|
@@ -8495,6 +8555,8 @@ module Aws::MediaLive
|
|
8495
8555
|
# resp.channel.pipeline_details[0].active_motion_graphics_action_name #=> String
|
8496
8556
|
# resp.channel.pipeline_details[0].active_motion_graphics_uri #=> String
|
8497
8557
|
# resp.channel.pipeline_details[0].pipeline_id #=> String
|
8558
|
+
# resp.channel.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
8559
|
+
# resp.channel.pipeline_details[0].channel_engine_version.version #=> String
|
8498
8560
|
# resp.channel.pipelines_running_count #=> Integer
|
8499
8561
|
# resp.channel.role_arn #=> String
|
8500
8562
|
# resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -8510,6 +8572,8 @@ module Aws::MediaLive
|
|
8510
8572
|
# resp.channel.vpc.subnet_ids[0] #=> String
|
8511
8573
|
# resp.channel.anywhere_settings.channel_placement_group_id #=> String
|
8512
8574
|
# resp.channel.anywhere_settings.cluster_id #=> String
|
8575
|
+
# resp.channel.channel_engine_version.expiration_date #=> Time
|
8576
|
+
# resp.channel.channel_engine_version.version #=> String
|
8513
8577
|
#
|
8514
8578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
8515
8579
|
#
|
@@ -9354,6 +9418,8 @@ module Aws::MediaLive
|
|
9354
9418
|
# resp.channel.pipeline_details[0].active_motion_graphics_action_name #=> String
|
9355
9419
|
# resp.channel.pipeline_details[0].active_motion_graphics_uri #=> String
|
9356
9420
|
# resp.channel.pipeline_details[0].pipeline_id #=> String
|
9421
|
+
# resp.channel.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
9422
|
+
# resp.channel.pipeline_details[0].channel_engine_version.version #=> String
|
9357
9423
|
# resp.channel.pipelines_running_count #=> Integer
|
9358
9424
|
# resp.channel.role_arn #=> String
|
9359
9425
|
# resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -9369,6 +9435,8 @@ module Aws::MediaLive
|
|
9369
9435
|
# resp.channel.vpc.subnet_ids[0] #=> String
|
9370
9436
|
# resp.channel.anywhere_settings.channel_placement_group_id #=> String
|
9371
9437
|
# resp.channel.anywhere_settings.cluster_id #=> String
|
9438
|
+
# resp.channel.channel_engine_version.expiration_date #=> Time
|
9439
|
+
# resp.channel.channel_engine_version.version #=> String
|
9372
9440
|
#
|
9373
9441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelClass AWS API Documentation
|
9374
9442
|
#
|
@@ -9965,6 +10033,7 @@ module Aws::MediaLive
|
|
9965
10033
|
# * {Types::RestartChannelPipelinesResponse#tags #tags} => Hash<String,String>
|
9966
10034
|
# * {Types::RestartChannelPipelinesResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
9967
10035
|
# * {Types::RestartChannelPipelinesResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
|
10036
|
+
# * {Types::RestartChannelPipelinesResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
|
9968
10037
|
#
|
9969
10038
|
# @example Request syntax with placeholder values
|
9970
10039
|
#
|
@@ -10756,6 +10825,8 @@ module Aws::MediaLive
|
|
10756
10825
|
# resp.pipeline_details[0].active_motion_graphics_action_name #=> String
|
10757
10826
|
# resp.pipeline_details[0].active_motion_graphics_uri #=> String
|
10758
10827
|
# resp.pipeline_details[0].pipeline_id #=> String
|
10828
|
+
# resp.pipeline_details[0].channel_engine_version.expiration_date #=> Time
|
10829
|
+
# resp.pipeline_details[0].channel_engine_version.version #=> String
|
10759
10830
|
# resp.pipelines_running_count #=> Integer
|
10760
10831
|
# resp.role_arn #=> String
|
10761
10832
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
@@ -10771,6 +10842,8 @@ module Aws::MediaLive
|
|
10771
10842
|
# resp.vpc.subnet_ids[0] #=> String
|
10772
10843
|
# resp.anywhere_settings.channel_placement_group_id #=> String
|
10773
10844
|
# resp.anywhere_settings.cluster_id #=> String
|
10845
|
+
# resp.channel_engine_version.expiration_date #=> Time
|
10846
|
+
# resp.channel_engine_version.version #=> String
|
10774
10847
|
#
|
10775
10848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RestartChannelPipelines AWS API Documentation
|
10776
10849
|
#
|
@@ -13621,6 +13694,28 @@ module Aws::MediaLive
|
|
13621
13694
|
req.send_request(options)
|
13622
13695
|
end
|
13623
13696
|
|
13697
|
+
# Retrieves an array of all the encoder engine versions that are
|
13698
|
+
# available in this AWS account.
|
13699
|
+
#
|
13700
|
+
# @return [Types::ListVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13701
|
+
#
|
13702
|
+
# * {Types::ListVersionsResponse#versions #versions} => Array<Types::ChannelEngineVersionResponse>
|
13703
|
+
#
|
13704
|
+
# @example Response structure
|
13705
|
+
#
|
13706
|
+
# resp.versions #=> Array
|
13707
|
+
# resp.versions[0].expiration_date #=> Time
|
13708
|
+
# resp.versions[0].version #=> String
|
13709
|
+
#
|
13710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListVersions AWS API Documentation
|
13711
|
+
#
|
13712
|
+
# @overload list_versions(params = {})
|
13713
|
+
# @param [Hash] params ({})
|
13714
|
+
def list_versions(params = {}, options = {})
|
13715
|
+
req = build_request(:list_versions, params)
|
13716
|
+
req.send_request(options)
|
13717
|
+
end
|
13718
|
+
|
13624
13719
|
# @!endgroup
|
13625
13720
|
|
13626
13721
|
# @param params ({})
|
@@ -13639,7 +13734,7 @@ module Aws::MediaLive
|
|
13639
13734
|
tracer: tracer
|
13640
13735
|
)
|
13641
13736
|
context[:gem_name] = 'aws-sdk-medialive'
|
13642
|
-
context[:gem_version] = '1.
|
13737
|
+
context[:gem_version] = '1.142.0'
|
13643
13738
|
Seahorse::Client::Request.new(handlers, context)
|
13644
13739
|
end
|
13645
13740
|
|
@@ -133,6 +133,8 @@ module Aws::MediaLive
|
|
133
133
|
ChannelClass = Shapes::StringShape.new(name: 'ChannelClass')
|
134
134
|
ChannelConfigurationValidationError = Shapes::StructureShape.new(name: 'ChannelConfigurationValidationError')
|
135
135
|
ChannelEgressEndpoint = Shapes::StructureShape.new(name: 'ChannelEgressEndpoint')
|
136
|
+
ChannelEngineVersionRequest = Shapes::StructureShape.new(name: 'ChannelEngineVersionRequest')
|
137
|
+
ChannelEngineVersionResponse = Shapes::StructureShape.new(name: 'ChannelEngineVersionResponse')
|
136
138
|
ChannelPipelineIdToRestart = Shapes::StringShape.new(name: 'ChannelPipelineIdToRestart')
|
137
139
|
ChannelPlacementGroupState = Shapes::StringShape.new(name: 'ChannelPlacementGroupState')
|
138
140
|
ChannelState = Shapes::StringShape.new(name: 'ChannelState')
|
@@ -617,6 +619,8 @@ module Aws::MediaLive
|
|
617
619
|
ListSignalMapsResponseContent = Shapes::StructureShape.new(name: 'ListSignalMapsResponseContent')
|
618
620
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
619
621
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
622
|
+
ListVersionsRequest = Shapes::StructureShape.new(name: 'ListVersionsRequest')
|
623
|
+
ListVersionsResponse = Shapes::StructureShape.new(name: 'ListVersionsResponse')
|
620
624
|
LogLevel = Shapes::StringShape.new(name: 'LogLevel')
|
621
625
|
M2tsAbsentInputAudioBehavior = Shapes::StringShape.new(name: 'M2tsAbsentInputAudioBehavior')
|
622
626
|
M2tsArib = Shapes::StringShape.new(name: 'M2tsArib')
|
@@ -1073,6 +1077,7 @@ module Aws::MediaLive
|
|
1073
1077
|
__listOfCaptionLanguageMapping = Shapes::ListShape.new(name: '__listOfCaptionLanguageMapping')
|
1074
1078
|
__listOfCaptionSelector = Shapes::ListShape.new(name: '__listOfCaptionSelector')
|
1075
1079
|
__listOfChannelEgressEndpoint = Shapes::ListShape.new(name: '__listOfChannelEgressEndpoint')
|
1080
|
+
__listOfChannelEngineVersionResponse = Shapes::ListShape.new(name: '__listOfChannelEngineVersionResponse')
|
1076
1081
|
__listOfChannelPipelineIdToRestart = Shapes::ListShape.new(name: '__listOfChannelPipelineIdToRestart')
|
1077
1082
|
__listOfChannelSummary = Shapes::ListShape.new(name: '__listOfChannelSummary')
|
1078
1083
|
__listOfCloudWatchAlarmTemplateGroupSummary = Shapes::ListShape.new(name: '__listOfCloudWatchAlarmTemplateGroupSummary')
|
@@ -1579,6 +1584,7 @@ module Aws::MediaLive
|
|
1579
1584
|
Channel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1580
1585
|
Channel.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1581
1586
|
Channel.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
|
1587
|
+
Channel.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
1582
1588
|
Channel.struct_class = Types::Channel
|
1583
1589
|
|
1584
1590
|
ChannelConfigurationValidationError.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
@@ -1588,6 +1594,13 @@ module Aws::MediaLive
|
|
1588
1594
|
ChannelEgressEndpoint.add_member(:source_ip, Shapes::ShapeRef.new(shape: __string, location_name: "sourceIp"))
|
1589
1595
|
ChannelEgressEndpoint.struct_class = Types::ChannelEgressEndpoint
|
1590
1596
|
|
1597
|
+
ChannelEngineVersionRequest.add_member(:version, Shapes::ShapeRef.new(shape: __string, location_name: "version"))
|
1598
|
+
ChannelEngineVersionRequest.struct_class = Types::ChannelEngineVersionRequest
|
1599
|
+
|
1600
|
+
ChannelEngineVersionResponse.add_member(:expiration_date, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "expirationDate"))
|
1601
|
+
ChannelEngineVersionResponse.add_member(:version, Shapes::ShapeRef.new(shape: __string, location_name: "version"))
|
1602
|
+
ChannelEngineVersionResponse.struct_class = Types::ChannelEngineVersionResponse
|
1603
|
+
|
1591
1604
|
ChannelSummary.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
1592
1605
|
ChannelSummary.add_member(:cdi_input_specification, Shapes::ShapeRef.new(shape: CdiInputSpecification, location_name: "cdiInputSpecification"))
|
1593
1606
|
ChannelSummary.add_member(:channel_class, Shapes::ShapeRef.new(shape: ChannelClass, location_name: "channelClass"))
|
@@ -1605,6 +1618,8 @@ module Aws::MediaLive
|
|
1605
1618
|
ChannelSummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1606
1619
|
ChannelSummary.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1607
1620
|
ChannelSummary.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
|
1621
|
+
ChannelSummary.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
1622
|
+
ChannelSummary.add_member(:used_channel_engine_versions, Shapes::ShapeRef.new(shape: __listOfChannelEngineVersionResponse, location_name: "usedChannelEngineVersions"))
|
1608
1623
|
ChannelSummary.struct_class = Types::ChannelSummary
|
1609
1624
|
|
1610
1625
|
ClaimDeviceRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
@@ -1699,6 +1714,8 @@ module Aws::MediaLive
|
|
1699
1714
|
CreateChannel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1700
1715
|
CreateChannel.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
|
1701
1716
|
CreateChannel.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
|
1717
|
+
CreateChannel.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
|
1718
|
+
CreateChannel.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
|
1702
1719
|
CreateChannel.struct_class = Types::CreateChannel
|
1703
1720
|
|
1704
1721
|
CreateChannelPlacementGroupRequest.add_member(:cluster_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterId"))
|
@@ -1732,6 +1749,8 @@ module Aws::MediaLive
|
|
1732
1749
|
CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1733
1750
|
CreateChannelRequest.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
|
1734
1751
|
CreateChannelRequest.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
|
1752
|
+
CreateChannelRequest.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
|
1753
|
+
CreateChannelRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
|
1735
1754
|
CreateChannelRequest.struct_class = Types::CreateChannelRequest
|
1736
1755
|
|
1737
1756
|
CreateChannelResponse.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
|
@@ -2167,6 +2186,7 @@ module Aws::MediaLive
|
|
2167
2186
|
DeleteChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
2168
2187
|
DeleteChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
2169
2188
|
DeleteChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
|
2189
|
+
DeleteChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
2170
2190
|
DeleteChannelResponse.struct_class = Types::DeleteChannelResponse
|
2171
2191
|
|
2172
2192
|
DeleteCloudWatchAlarmTemplateGroupRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "identifier"))
|
@@ -2359,6 +2379,7 @@ module Aws::MediaLive
|
|
2359
2379
|
DescribeChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
2360
2380
|
DescribeChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
2361
2381
|
DescribeChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
|
2382
|
+
DescribeChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
2362
2383
|
DescribeChannelResponse.struct_class = Types::DescribeChannelResponse
|
2363
2384
|
|
2364
2385
|
DescribeClusterRequest.add_member(:cluster_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterId"))
|
@@ -3744,6 +3765,11 @@ module Aws::MediaLive
|
|
3744
3765
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
3745
3766
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
3746
3767
|
|
3768
|
+
ListVersionsRequest.struct_class = Types::ListVersionsRequest
|
3769
|
+
|
3770
|
+
ListVersionsResponse.add_member(:versions, Shapes::ShapeRef.new(shape: __listOfChannelEngineVersionResponse, location_name: "versions"))
|
3771
|
+
ListVersionsResponse.struct_class = Types::ListVersionsResponse
|
3772
|
+
|
3747
3773
|
M2tsSettings.add_member(:absent_input_audio_behavior, Shapes::ShapeRef.new(shape: M2tsAbsentInputAudioBehavior, location_name: "absentInputAudioBehavior"))
|
3748
3774
|
M2tsSettings.add_member(:arib, Shapes::ShapeRef.new(shape: M2tsArib, location_name: "arib"))
|
3749
3775
|
M2tsSettings.add_member(:arib_captions_pid, Shapes::ShapeRef.new(shape: __string, location_name: "aribCaptionsPid"))
|
@@ -4204,6 +4230,7 @@ module Aws::MediaLive
|
|
4204
4230
|
PipelineDetail.add_member(:active_motion_graphics_action_name, Shapes::ShapeRef.new(shape: __string, location_name: "activeMotionGraphicsActionName"))
|
4205
4231
|
PipelineDetail.add_member(:active_motion_graphics_uri, Shapes::ShapeRef.new(shape: __string, location_name: "activeMotionGraphicsUri"))
|
4206
4232
|
PipelineDetail.add_member(:pipeline_id, Shapes::ShapeRef.new(shape: __string, location_name: "pipelineId"))
|
4233
|
+
PipelineDetail.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
4207
4234
|
PipelineDetail.struct_class = Types::PipelineDetail
|
4208
4235
|
|
4209
4236
|
PipelineLockingSettings.struct_class = Types::PipelineLockingSettings
|
@@ -4324,6 +4351,7 @@ module Aws::MediaLive
|
|
4324
4351
|
RestartChannelPipelinesResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
4325
4352
|
RestartChannelPipelinesResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
4326
4353
|
RestartChannelPipelinesResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
|
4354
|
+
RestartChannelPipelinesResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
4327
4355
|
RestartChannelPipelinesResponse.struct_class = Types::RestartChannelPipelinesResponse
|
4328
4356
|
|
4329
4357
|
Route.add_member(:cidr, Shapes::ShapeRef.new(shape: __string, location_name: "cidr"))
|
@@ -4532,6 +4560,7 @@ module Aws::MediaLive
|
|
4532
4560
|
StartChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
4533
4561
|
StartChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
4534
4562
|
StartChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
|
4563
|
+
StartChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
4535
4564
|
StartChannelResponse.struct_class = Types::StartChannelResponse
|
4536
4565
|
|
4537
4566
|
StartDeleteMonitorDeploymentRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "identifier"))
|
@@ -4769,6 +4798,7 @@ module Aws::MediaLive
|
|
4769
4798
|
StopChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
4770
4799
|
StopChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
4771
4800
|
StopChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
|
4801
|
+
StopChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
|
4772
4802
|
StopChannelResponse.struct_class = Types::StopChannelResponse
|
4773
4803
|
|
4774
4804
|
StopInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
@@ -4912,6 +4942,8 @@ module Aws::MediaLive
|
|
4912
4942
|
UpdateChannel.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceUpdateSettings, location_name: "maintenance"))
|
4913
4943
|
UpdateChannel.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
4914
4944
|
UpdateChannel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
4945
|
+
UpdateChannel.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
|
4946
|
+
UpdateChannel.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
|
4915
4947
|
UpdateChannel.struct_class = Types::UpdateChannel
|
4916
4948
|
|
4917
4949
|
UpdateChannelClass.add_member(:channel_class, Shapes::ShapeRef.new(shape: ChannelClass, required: true, location_name: "channelClass"))
|
@@ -4951,6 +4983,8 @@ module Aws::MediaLive
|
|
4951
4983
|
UpdateChannelRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceUpdateSettings, location_name: "maintenance"))
|
4952
4984
|
UpdateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
4953
4985
|
UpdateChannelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
4986
|
+
UpdateChannelRequest.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
|
4987
|
+
UpdateChannelRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
|
4954
4988
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
4955
4989
|
|
4956
4990
|
UpdateChannelResponse.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
|
@@ -5396,6 +5430,8 @@ module Aws::MediaLive
|
|
5396
5430
|
|
5397
5431
|
__listOfChannelEgressEndpoint.member = Shapes::ShapeRef.new(shape: ChannelEgressEndpoint)
|
5398
5432
|
|
5433
|
+
__listOfChannelEngineVersionResponse.member = Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse)
|
5434
|
+
|
5399
5435
|
__listOfChannelPipelineIdToRestart.member = Shapes::ShapeRef.new(shape: ChannelPipelineIdToRestart)
|
5400
5436
|
|
5401
5437
|
__listOfChannelSummary.member = Shapes::ShapeRef.new(shape: ChannelSummary)
|
@@ -7380,6 +7416,22 @@ module Aws::MediaLive
|
|
7380
7416
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
7381
7417
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
7382
7418
|
end)
|
7419
|
+
|
7420
|
+
api.add_operation(:list_versions, Seahorse::Model::Operation.new.tap do |o|
|
7421
|
+
o.name = "ListVersions"
|
7422
|
+
o.http_method = "GET"
|
7423
|
+
o.http_request_uri = "/prod/versions"
|
7424
|
+
o.input = Shapes::ShapeRef.new(shape: ListVersionsRequest)
|
7425
|
+
o.output = Shapes::ShapeRef.new(shape: ListVersionsResponse)
|
7426
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
7427
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
7428
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
7429
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
7430
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
7431
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
7432
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
7433
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
7434
|
+
end)
|
7383
7435
|
end
|
7384
7436
|
|
7385
7437
|
end
|
@@ -1867,6 +1867,10 @@ module Aws::MediaLive
|
|
1867
1867
|
# Anywhere settings for this channel.
|
1868
1868
|
# @return [Types::DescribeAnywhereSettings]
|
1869
1869
|
#
|
1870
|
+
# @!attribute [rw] channel_engine_version
|
1871
|
+
# Requested engine version for this channel.
|
1872
|
+
# @return [Types::ChannelEngineVersionResponse]
|
1873
|
+
#
|
1870
1874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Channel AWS API Documentation
|
1871
1875
|
#
|
1872
1876
|
class Channel < Struct.new(
|
@@ -1888,7 +1892,8 @@ module Aws::MediaLive
|
|
1888
1892
|
:state,
|
1889
1893
|
:tags,
|
1890
1894
|
:vpc,
|
1891
|
-
:anywhere_settings
|
1895
|
+
:anywhere_settings,
|
1896
|
+
:channel_engine_version)
|
1892
1897
|
SENSITIVE = []
|
1893
1898
|
include Aws::Structure
|
1894
1899
|
end
|
@@ -1992,6 +1997,14 @@ module Aws::MediaLive
|
|
1992
1997
|
# AnywhereSettings settings for this channel.
|
1993
1998
|
# @return [Types::DescribeAnywhereSettings]
|
1994
1999
|
#
|
2000
|
+
# @!attribute [rw] channel_engine_version
|
2001
|
+
# The engine version that you requested for this channel.
|
2002
|
+
# @return [Types::ChannelEngineVersionResponse]
|
2003
|
+
#
|
2004
|
+
# @!attribute [rw] used_channel_engine_versions
|
2005
|
+
# The engine version that the running pipelines are using.
|
2006
|
+
# @return [Array<Types::ChannelEngineVersionResponse>]
|
2007
|
+
#
|
1995
2008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelSummary AWS API Documentation
|
1996
2009
|
#
|
1997
2010
|
class ChannelSummary < Struct.new(
|
@@ -2011,7 +2024,9 @@ module Aws::MediaLive
|
|
2011
2024
|
:state,
|
2012
2025
|
:tags,
|
2013
2026
|
:vpc,
|
2014
|
-
:anywhere_settings
|
2027
|
+
:anywhere_settings,
|
2028
|
+
:channel_engine_version,
|
2029
|
+
:used_channel_engine_versions)
|
2015
2030
|
SENSITIVE = []
|
2016
2031
|
include Aws::Structure
|
2017
2032
|
end
|
@@ -2165,6 +2180,13 @@ module Aws::MediaLive
|
|
2165
2180
|
# The Elemental Anywhere settings for this channel.
|
2166
2181
|
# @return [Types::AnywhereSettings]
|
2167
2182
|
#
|
2183
|
+
# @!attribute [rw] channel_engine_version
|
2184
|
+
# The desired engine version for this channel.
|
2185
|
+
# @return [Types::ChannelEngineVersionRequest]
|
2186
|
+
#
|
2187
|
+
# @!attribute [rw] dry_run
|
2188
|
+
# @return [Boolean]
|
2189
|
+
#
|
2168
2190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
|
2169
2191
|
#
|
2170
2192
|
class CreateChannel < Struct.new(
|
@@ -2182,7 +2204,9 @@ module Aws::MediaLive
|
|
2182
2204
|
:role_arn,
|
2183
2205
|
:tags,
|
2184
2206
|
:vpc,
|
2185
|
-
:anywhere_settings
|
2207
|
+
:anywhere_settings,
|
2208
|
+
:channel_engine_version,
|
2209
|
+
:dry_run)
|
2186
2210
|
SENSITIVE = []
|
2187
2211
|
include Aws::Structure
|
2188
2212
|
end
|
@@ -2242,6 +2266,12 @@ module Aws::MediaLive
|
|
2242
2266
|
# Elemental anywhere settings
|
2243
2267
|
# @return [Types::AnywhereSettings]
|
2244
2268
|
#
|
2269
|
+
# @!attribute [rw] channel_engine_version
|
2270
|
+
# @return [Types::ChannelEngineVersionRequest]
|
2271
|
+
#
|
2272
|
+
# @!attribute [rw] dry_run
|
2273
|
+
# @return [Boolean]
|
2274
|
+
#
|
2245
2275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelRequest AWS API Documentation
|
2246
2276
|
#
|
2247
2277
|
class CreateChannelRequest < Struct.new(
|
@@ -2259,7 +2289,9 @@ module Aws::MediaLive
|
|
2259
2289
|
:role_arn,
|
2260
2290
|
:tags,
|
2261
2291
|
:vpc,
|
2262
|
-
:anywhere_settings
|
2292
|
+
:anywhere_settings,
|
2293
|
+
:channel_engine_version,
|
2294
|
+
:dry_run)
|
2263
2295
|
SENSITIVE = []
|
2264
2296
|
include Aws::Structure
|
2265
2297
|
end
|
@@ -2827,6 +2859,9 @@ module Aws::MediaLive
|
|
2827
2859
|
# Elemental anywhere settings
|
2828
2860
|
# @return [Types::DescribeAnywhereSettings]
|
2829
2861
|
#
|
2862
|
+
# @!attribute [rw] channel_engine_version
|
2863
|
+
# @return [Types::ChannelEngineVersionResponse]
|
2864
|
+
#
|
2830
2865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannelResponse AWS API Documentation
|
2831
2866
|
#
|
2832
2867
|
class DeleteChannelResponse < Struct.new(
|
@@ -2848,7 +2883,8 @@ module Aws::MediaLive
|
|
2848
2883
|
:state,
|
2849
2884
|
:tags,
|
2850
2885
|
:vpc,
|
2851
|
-
:anywhere_settings
|
2886
|
+
:anywhere_settings,
|
2887
|
+
:channel_engine_version)
|
2852
2888
|
SENSITIVE = []
|
2853
2889
|
include Aws::Structure
|
2854
2890
|
end
|
@@ -3220,6 +3256,9 @@ module Aws::MediaLive
|
|
3220
3256
|
# Elemental anywhere settings
|
3221
3257
|
# @return [Types::DescribeAnywhereSettings]
|
3222
3258
|
#
|
3259
|
+
# @!attribute [rw] channel_engine_version
|
3260
|
+
# @return [Types::ChannelEngineVersionResponse]
|
3261
|
+
#
|
3223
3262
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeChannelResponse AWS API Documentation
|
3224
3263
|
#
|
3225
3264
|
class DescribeChannelResponse < Struct.new(
|
@@ -3241,7 +3280,8 @@ module Aws::MediaLive
|
|
3241
3280
|
:state,
|
3242
3281
|
:tags,
|
3243
3282
|
:vpc,
|
3244
|
-
:anywhere_settings
|
3283
|
+
:anywhere_settings,
|
3284
|
+
:channel_engine_version)
|
3245
3285
|
SENSITIVE = []
|
3246
3286
|
include Aws::Structure
|
3247
3287
|
end
|
@@ -10364,6 +10404,10 @@ module Aws::MediaLive
|
|
10364
10404
|
# Pipeline ID
|
10365
10405
|
# @return [String]
|
10366
10406
|
#
|
10407
|
+
# @!attribute [rw] channel_engine_version
|
10408
|
+
# Current engine version of the encoder for this pipeline.
|
10409
|
+
# @return [Types::ChannelEngineVersionResponse]
|
10410
|
+
#
|
10367
10411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PipelineDetail AWS API Documentation
|
10368
10412
|
#
|
10369
10413
|
class PipelineDetail < Struct.new(
|
@@ -10371,7 +10415,8 @@ module Aws::MediaLive
|
|
10371
10415
|
:active_input_switch_action_name,
|
10372
10416
|
:active_motion_graphics_action_name,
|
10373
10417
|
:active_motion_graphics_uri,
|
10374
|
-
:pipeline_id
|
10418
|
+
:pipeline_id,
|
10419
|
+
:channel_engine_version)
|
10375
10420
|
SENSITIVE = []
|
10376
10421
|
include Aws::Structure
|
10377
10422
|
end
|
@@ -11537,6 +11582,9 @@ module Aws::MediaLive
|
|
11537
11582
|
# Elemental anywhere settings
|
11538
11583
|
# @return [Types::DescribeAnywhereSettings]
|
11539
11584
|
#
|
11585
|
+
# @!attribute [rw] channel_engine_version
|
11586
|
+
# @return [Types::ChannelEngineVersionResponse]
|
11587
|
+
#
|
11540
11588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannelResponse AWS API Documentation
|
11541
11589
|
#
|
11542
11590
|
class StartChannelResponse < Struct.new(
|
@@ -11558,7 +11606,8 @@ module Aws::MediaLive
|
|
11558
11606
|
:state,
|
11559
11607
|
:tags,
|
11560
11608
|
:vpc,
|
11561
|
-
:anywhere_settings
|
11609
|
+
:anywhere_settings,
|
11610
|
+
:channel_engine_version)
|
11562
11611
|
SENSITIVE = []
|
11563
11612
|
include Aws::Structure
|
11564
11613
|
end
|
@@ -11980,6 +12029,9 @@ module Aws::MediaLive
|
|
11980
12029
|
# Elemental anywhere settings
|
11981
12030
|
# @return [Types::DescribeAnywhereSettings]
|
11982
12031
|
#
|
12032
|
+
# @!attribute [rw] channel_engine_version
|
12033
|
+
# @return [Types::ChannelEngineVersionResponse]
|
12034
|
+
#
|
11983
12035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannelResponse AWS API Documentation
|
11984
12036
|
#
|
11985
12037
|
class StopChannelResponse < Struct.new(
|
@@ -12001,7 +12053,8 @@ module Aws::MediaLive
|
|
12001
12053
|
:state,
|
12002
12054
|
:tags,
|
12003
12055
|
:vpc,
|
12004
|
-
:anywhere_settings
|
12056
|
+
:anywhere_settings,
|
12057
|
+
:channel_engine_version)
|
12005
12058
|
SENSITIVE = []
|
12006
12059
|
include Aws::Structure
|
12007
12060
|
end
|
@@ -12596,6 +12649,13 @@ module Aws::MediaLive
|
|
12596
12649
|
# but the role was previously set that role will be removed.
|
12597
12650
|
# @return [String]
|
12598
12651
|
#
|
12652
|
+
# @!attribute [rw] channel_engine_version
|
12653
|
+
# Channel engine version for this channel
|
12654
|
+
# @return [Types::ChannelEngineVersionRequest]
|
12655
|
+
#
|
12656
|
+
# @!attribute [rw] dry_run
|
12657
|
+
# @return [Boolean]
|
12658
|
+
#
|
12599
12659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
12600
12660
|
#
|
12601
12661
|
class UpdateChannel < Struct.new(
|
@@ -12607,7 +12667,9 @@ module Aws::MediaLive
|
|
12607
12667
|
:log_level,
|
12608
12668
|
:maintenance,
|
12609
12669
|
:name,
|
12610
|
-
:role_arn
|
12670
|
+
:role_arn,
|
12671
|
+
:channel_engine_version,
|
12672
|
+
:dry_run)
|
12611
12673
|
SENSITIVE = []
|
12612
12674
|
include Aws::Structure
|
12613
12675
|
end
|
@@ -12693,6 +12755,12 @@ module Aws::MediaLive
|
|
12693
12755
|
# @!attribute [rw] role_arn
|
12694
12756
|
# @return [String]
|
12695
12757
|
#
|
12758
|
+
# @!attribute [rw] channel_engine_version
|
12759
|
+
# @return [Types::ChannelEngineVersionRequest]
|
12760
|
+
#
|
12761
|
+
# @!attribute [rw] dry_run
|
12762
|
+
# @return [Boolean]
|
12763
|
+
#
|
12696
12764
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
|
12697
12765
|
#
|
12698
12766
|
class UpdateChannelRequest < Struct.new(
|
@@ -12705,7 +12773,9 @@ module Aws::MediaLive
|
|
12705
12773
|
:log_level,
|
12706
12774
|
:maintenance,
|
12707
12775
|
:name,
|
12708
|
-
:role_arn
|
12776
|
+
:role_arn,
|
12777
|
+
:channel_engine_version,
|
12778
|
+
:dry_run)
|
12709
12779
|
SENSITIVE = []
|
12710
12780
|
include Aws::Structure
|
12711
12781
|
end
|
@@ -13738,6 +13808,9 @@ module Aws::MediaLive
|
|
13738
13808
|
# Elemental anywhere settings
|
13739
13809
|
# @return [Types::DescribeAnywhereSettings]
|
13740
13810
|
#
|
13811
|
+
# @!attribute [rw] channel_engine_version
|
13812
|
+
# @return [Types::ChannelEngineVersionResponse]
|
13813
|
+
#
|
13741
13814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RestartChannelPipelinesResponse AWS API Documentation
|
13742
13815
|
#
|
13743
13816
|
class RestartChannelPipelinesResponse < Struct.new(
|
@@ -13760,7 +13833,8 @@ module Aws::MediaLive
|
|
13760
13833
|
:state,
|
13761
13834
|
:tags,
|
13762
13835
|
:vpc,
|
13763
|
-
:anywhere_settings
|
13836
|
+
:anywhere_settings,
|
13837
|
+
:channel_engine_version)
|
13764
13838
|
SENSITIVE = []
|
13765
13839
|
include Aws::Structure
|
13766
13840
|
end
|
@@ -20822,6 +20896,53 @@ module Aws::MediaLive
|
|
20822
20896
|
include Aws::Structure
|
20823
20897
|
end
|
20824
20898
|
|
20899
|
+
# @!attribute [rw] version
|
20900
|
+
# The build identifier of the engine version to use for this channel.
|
20901
|
+
# Specify 'DEFAULT' to reset to the default version.
|
20902
|
+
# @return [String]
|
20903
|
+
#
|
20904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelEngineVersionRequest AWS API Documentation
|
20905
|
+
#
|
20906
|
+
class ChannelEngineVersionRequest < Struct.new(
|
20907
|
+
:version)
|
20908
|
+
SENSITIVE = []
|
20909
|
+
include Aws::Structure
|
20910
|
+
end
|
20911
|
+
|
20912
|
+
# @!attribute [rw] expiration_date
|
20913
|
+
# @return [Time]
|
20914
|
+
#
|
20915
|
+
# @!attribute [rw] version
|
20916
|
+
# The build identifier for this version of the channel version.
|
20917
|
+
# @return [String]
|
20918
|
+
#
|
20919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelEngineVersionResponse AWS API Documentation
|
20920
|
+
#
|
20921
|
+
class ChannelEngineVersionResponse < Struct.new(
|
20922
|
+
:expiration_date,
|
20923
|
+
:version)
|
20924
|
+
SENSITIVE = []
|
20925
|
+
include Aws::Structure
|
20926
|
+
end
|
20927
|
+
|
20928
|
+
# @api private
|
20929
|
+
#
|
20930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListVersionsRequest AWS API Documentation
|
20931
|
+
#
|
20932
|
+
class ListVersionsRequest < Aws::EmptyStructure; end
|
20933
|
+
|
20934
|
+
# @!attribute [rw] versions
|
20935
|
+
# List of engine versions that are available for this AWS account.
|
20936
|
+
# @return [Array<Types::ChannelEngineVersionResponse>]
|
20937
|
+
#
|
20938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListVersionsResponse AWS API Documentation
|
20939
|
+
#
|
20940
|
+
class ListVersionsResponse < Struct.new(
|
20941
|
+
:versions)
|
20942
|
+
SENSITIVE = []
|
20943
|
+
include Aws::Structure
|
20944
|
+
end
|
20945
|
+
|
20825
20946
|
end
|
20826
20947
|
end
|
20827
20948
|
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -1524,7 +1526,11 @@ module Aws
|
|
1524
1526
|
?anywhere_settings: {
|
1525
1527
|
channel_placement_group_id: ::String?,
|
1526
1528
|
cluster_id: ::String?
|
1527
|
-
}
|
1529
|
+
},
|
1530
|
+
?channel_engine_version: {
|
1531
|
+
version: ::String?
|
1532
|
+
},
|
1533
|
+
?dry_run: bool
|
1528
1534
|
) -> _CreateChannelResponseSuccess
|
1529
1535
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
|
1530
1536
|
|
@@ -1702,6 +1708,7 @@ module Aws
|
|
1702
1708
|
def tags: () -> ::Hash[::String, ::String]
|
1703
1709
|
def vpc: () -> Types::VpcOutputSettingsDescription
|
1704
1710
|
def anywhere_settings: () -> Types::DescribeAnywhereSettings
|
1711
|
+
def channel_engine_version: () -> Types::ChannelEngineVersionResponse
|
1705
1712
|
end
|
1706
1713
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_channel-instance_method
|
1707
1714
|
def delete_channel: (
|
@@ -1835,6 +1842,7 @@ module Aws
|
|
1835
1842
|
def tags: () -> ::Hash[::String, ::String]
|
1836
1843
|
def vpc: () -> Types::VpcOutputSettingsDescription
|
1837
1844
|
def anywhere_settings: () -> Types::DescribeAnywhereSettings
|
1845
|
+
def channel_engine_version: () -> Types::ChannelEngineVersionResponse
|
1838
1846
|
end
|
1839
1847
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_channel-instance_method
|
1840
1848
|
def describe_channel: (
|
@@ -2229,6 +2237,7 @@ module Aws
|
|
2229
2237
|
def tags: () -> ::Hash[::String, ::String]
|
2230
2238
|
def vpc: () -> Types::VpcOutputSettingsDescription
|
2231
2239
|
def anywhere_settings: () -> Types::DescribeAnywhereSettings
|
2240
|
+
def channel_engine_version: () -> Types::ChannelEngineVersionResponse
|
2232
2241
|
end
|
2233
2242
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#start_channel-instance_method
|
2234
2243
|
def start_channel: (
|
@@ -2294,6 +2303,7 @@ module Aws
|
|
2294
2303
|
def tags: () -> ::Hash[::String, ::String]
|
2295
2304
|
def vpc: () -> Types::VpcOutputSettingsDescription
|
2296
2305
|
def anywhere_settings: () -> Types::DescribeAnywhereSettings
|
2306
|
+
def channel_engine_version: () -> Types::ChannelEngineVersionResponse
|
2297
2307
|
end
|
2298
2308
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#stop_channel-instance_method
|
2299
2309
|
def stop_channel: (
|
@@ -3563,7 +3573,11 @@ module Aws
|
|
3563
3573
|
maintenance_start_time: ::String?
|
3564
3574
|
},
|
3565
3575
|
?name: ::String,
|
3566
|
-
?role_arn: ::String
|
3576
|
+
?role_arn: ::String,
|
3577
|
+
?channel_engine_version: {
|
3578
|
+
version: ::String?
|
3579
|
+
},
|
3580
|
+
?dry_run: bool
|
3567
3581
|
) -> _UpdateChannelResponseSuccess
|
3568
3582
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
|
3569
3583
|
|
@@ -3853,6 +3867,7 @@ module Aws
|
|
3853
3867
|
def tags: () -> ::Hash[::String, ::String]
|
3854
3868
|
def vpc: () -> Types::VpcOutputSettingsDescription
|
3855
3869
|
def anywhere_settings: () -> Types::DescribeAnywhereSettings
|
3870
|
+
def channel_engine_version: () -> Types::ChannelEngineVersionResponse
|
3856
3871
|
end
|
3857
3872
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#restart_channel_pipelines-instance_method
|
3858
3873
|
def restart_channel_pipelines: (
|
@@ -4823,6 +4838,15 @@ module Aws
|
|
4823
4838
|
) -> _UpdateNodeStateResponseSuccess
|
4824
4839
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNodeStateResponseSuccess
|
4825
4840
|
|
4841
|
+
interface _ListVersionsResponseSuccess
|
4842
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListVersionsResponse]
|
4843
|
+
def versions: () -> ::Array[Types::ChannelEngineVersionResponse]
|
4844
|
+
end
|
4845
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_versions-instance_method
|
4846
|
+
def list_versions: (
|
4847
|
+
) -> _ListVersionsResponseSuccess
|
4848
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVersionsResponseSuccess
|
4849
|
+
|
4826
4850
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#wait_until-instance_method
|
4827
4851
|
def wait_until: (:channel_created waiter_name,
|
4828
4852
|
channel_id: ::String
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -491,6 +491,7 @@ module Aws::MediaLive
|
|
491
491
|
attr_accessor tags: ::Hash[::String, ::String]
|
492
492
|
attr_accessor vpc: Types::VpcOutputSettingsDescription
|
493
493
|
attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
|
494
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
494
495
|
SENSITIVE: []
|
495
496
|
end
|
496
497
|
|
@@ -523,6 +524,8 @@ module Aws::MediaLive
|
|
523
524
|
attr_accessor tags: ::Hash[::String, ::String]
|
524
525
|
attr_accessor vpc: Types::VpcOutputSettingsDescription
|
525
526
|
attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
|
527
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
528
|
+
attr_accessor used_channel_engine_versions: ::Array[Types::ChannelEngineVersionResponse]
|
526
529
|
SENSITIVE: []
|
527
530
|
end
|
528
531
|
|
@@ -570,6 +573,8 @@ module Aws::MediaLive
|
|
570
573
|
attr_accessor tags: ::Hash[::String, ::String]
|
571
574
|
attr_accessor vpc: Types::VpcOutputSettings
|
572
575
|
attr_accessor anywhere_settings: Types::AnywhereSettings
|
576
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
|
577
|
+
attr_accessor dry_run: bool
|
573
578
|
SENSITIVE: []
|
574
579
|
end
|
575
580
|
|
@@ -589,6 +594,8 @@ module Aws::MediaLive
|
|
589
594
|
attr_accessor tags: ::Hash[::String, ::String]
|
590
595
|
attr_accessor vpc: Types::VpcOutputSettings
|
591
596
|
attr_accessor anywhere_settings: Types::AnywhereSettings
|
597
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
|
598
|
+
attr_accessor dry_run: bool
|
592
599
|
SENSITIVE: []
|
593
600
|
end
|
594
601
|
|
@@ -771,6 +778,7 @@ module Aws::MediaLive
|
|
771
778
|
attr_accessor tags: ::Hash[::String, ::String]
|
772
779
|
attr_accessor vpc: Types::VpcOutputSettingsDescription
|
773
780
|
attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
|
781
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
774
782
|
SENSITIVE: []
|
775
783
|
end
|
776
784
|
|
@@ -904,6 +912,7 @@ module Aws::MediaLive
|
|
904
912
|
attr_accessor tags: ::Hash[::String, ::String]
|
905
913
|
attr_accessor vpc: Types::VpcOutputSettingsDescription
|
906
914
|
attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
|
915
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
907
916
|
SENSITIVE: []
|
908
917
|
end
|
909
918
|
|
@@ -2598,6 +2607,7 @@ module Aws::MediaLive
|
|
2598
2607
|
attr_accessor active_motion_graphics_action_name: ::String
|
2599
2608
|
attr_accessor active_motion_graphics_uri: ::String
|
2600
2609
|
attr_accessor pipeline_id: ::String
|
2610
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
2601
2611
|
SENSITIVE: []
|
2602
2612
|
end
|
2603
2613
|
|
@@ -2915,6 +2925,7 @@ module Aws::MediaLive
|
|
2915
2925
|
attr_accessor tags: ::Hash[::String, ::String]
|
2916
2926
|
attr_accessor vpc: Types::VpcOutputSettingsDescription
|
2917
2927
|
attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
|
2928
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
2918
2929
|
SENSITIVE: []
|
2919
2930
|
end
|
2920
2931
|
|
@@ -3031,6 +3042,7 @@ module Aws::MediaLive
|
|
3031
3042
|
attr_accessor tags: ::Hash[::String, ::String]
|
3032
3043
|
attr_accessor vpc: Types::VpcOutputSettingsDescription
|
3033
3044
|
attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
|
3045
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
3034
3046
|
SENSITIVE: []
|
3035
3047
|
end
|
3036
3048
|
|
@@ -3219,6 +3231,8 @@ module Aws::MediaLive
|
|
3219
3231
|
attr_accessor maintenance: Types::MaintenanceUpdateSettings
|
3220
3232
|
attr_accessor name: ::String
|
3221
3233
|
attr_accessor role_arn: ::String
|
3234
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
|
3235
|
+
attr_accessor dry_run: bool
|
3222
3236
|
SENSITIVE: []
|
3223
3237
|
end
|
3224
3238
|
|
@@ -3251,6 +3265,8 @@ module Aws::MediaLive
|
|
3251
3265
|
attr_accessor maintenance: Types::MaintenanceUpdateSettings
|
3252
3266
|
attr_accessor name: ::String
|
3253
3267
|
attr_accessor role_arn: ::String
|
3268
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
|
3269
|
+
attr_accessor dry_run: bool
|
3254
3270
|
SENSITIVE: []
|
3255
3271
|
end
|
3256
3272
|
|
@@ -3552,6 +3568,7 @@ module Aws::MediaLive
|
|
3552
3568
|
attr_accessor tags: ::Hash[::String, ::String]
|
3553
3569
|
attr_accessor vpc: Types::VpcOutputSettingsDescription
|
3554
3570
|
attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
|
3571
|
+
attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
|
3555
3572
|
SENSITIVE: []
|
3556
3573
|
end
|
3557
3574
|
|
@@ -5439,5 +5456,24 @@ module Aws::MediaLive
|
|
5439
5456
|
attr_accessor scte_35_preroll_pullup_milliseconds: ::Float
|
5440
5457
|
SENSITIVE: []
|
5441
5458
|
end
|
5459
|
+
|
5460
|
+
class ChannelEngineVersionRequest
|
5461
|
+
attr_accessor version: ::String
|
5462
|
+
SENSITIVE: []
|
5463
|
+
end
|
5464
|
+
|
5465
|
+
class ChannelEngineVersionResponse
|
5466
|
+
attr_accessor expiration_date: ::Time
|
5467
|
+
attr_accessor version: ::String
|
5468
|
+
SENSITIVE: []
|
5469
|
+
end
|
5470
|
+
|
5471
|
+
class ListVersionsRequest < Aws::EmptyStructure
|
5472
|
+
end
|
5473
|
+
|
5474
|
+
class ListVersionsResponse
|
5475
|
+
attr_accessor versions: ::Array[Types::ChannelEngineVersionResponse]
|
5476
|
+
SENSITIVE: []
|
5477
|
+
end
|
5442
5478
|
end
|
5443
5479
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medialive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.142.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|