aws-sdk-medialive 1.128.0 → 1.129.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +35 -2
- data/lib/aws-sdk-medialive/client_api.rb +3 -0
- data/lib/aws-sdk-medialive/types.rb +16 -2
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +9 -4
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -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: e63dadefa822bdc6398169e0cd0aef6e424364f9871f8fb7bde885b6f087333d
|
|
4
|
+
data.tar.gz: a44db80f196b6413eb0ba9b73868844ca3eae10748abf98d266e9de703e2bf3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a8aa00618c1936e4a2459012be3d2ce027712867e003846689d58e5b175d5edd839f1366a6a0674884d9720fdd11438a1811678c29c1d4a55a9981ac275ef2d
|
|
7
|
+
data.tar.gz: c6aa2e37124b6ed6f438d542c96092a693e327e43482880b8c97035263beae723bda380edaee15465bf3b7019a1abb5aa4005612a5b991a6b380cee12b18391e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.129.0
|
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
|
36
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
37
38
|
|
|
@@ -83,6 +84,7 @@ module Aws::MediaLive
|
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
|
87
89
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
88
90
|
add_plugin(Aws::MediaLive::Plugins::Endpoints)
|
|
@@ -330,6 +332,16 @@ module Aws::MediaLive
|
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
331
333
|
# requests are made, and retries are disabled.
|
|
332
334
|
#
|
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
|
339
|
+
# following telemetry providers:
|
|
340
|
+
#
|
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
|
344
|
+
#
|
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
|
335
347
|
# following classes:
|
|
@@ -1526,6 +1538,7 @@ module Aws::MediaLive
|
|
|
1526
1538
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
1527
1539
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
1528
1540
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
1541
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
1529
1542
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
1530
1543
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
1531
1544
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -1566,6 +1579,7 @@ module Aws::MediaLive
|
|
|
1566
1579
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
1567
1580
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
1568
1581
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
1582
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
1569
1583
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
1570
1584
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
1571
1585
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -2688,6 +2702,7 @@ module Aws::MediaLive
|
|
|
2688
2702
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
2689
2703
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
2690
2704
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
2705
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
2691
2706
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
2692
2707
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
2693
2708
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -2728,6 +2743,7 @@ module Aws::MediaLive
|
|
|
2728
2743
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
2729
2744
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
2730
2745
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
2746
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
2731
2747
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
2732
2748
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
2733
2749
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -3709,6 +3725,7 @@ module Aws::MediaLive
|
|
|
3709
3725
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
3710
3726
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
3711
3727
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
3728
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
3712
3729
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
3713
3730
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
3714
3731
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -3749,6 +3766,7 @@ module Aws::MediaLive
|
|
|
3749
3766
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
3750
3767
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
3751
3768
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
3769
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
3752
3770
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
3753
3771
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
3754
3772
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -5882,6 +5900,7 @@ module Aws::MediaLive
|
|
|
5882
5900
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
5883
5901
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
5884
5902
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
5903
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
5885
5904
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
5886
5905
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
5887
5906
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -5922,6 +5941,7 @@ module Aws::MediaLive
|
|
|
5922
5941
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
5923
5942
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
5924
5943
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
5944
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
5925
5945
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
5926
5946
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
5927
5947
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -6710,6 +6730,7 @@ module Aws::MediaLive
|
|
|
6710
6730
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
6711
6731
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
6712
6732
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
6733
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
6713
6734
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
6714
6735
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
6715
6736
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -6750,6 +6771,7 @@ module Aws::MediaLive
|
|
|
6750
6771
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
6751
6772
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
6752
6773
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
6774
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
6753
6775
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
6754
6776
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
6755
6777
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -7566,6 +7588,7 @@ module Aws::MediaLive
|
|
|
7566
7588
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
7567
7589
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
7568
7590
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
7591
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
7569
7592
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
7570
7593
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
7571
7594
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -7606,6 +7629,7 @@ module Aws::MediaLive
|
|
|
7606
7629
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
7607
7630
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
7608
7631
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
7632
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
7609
7633
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
7610
7634
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
7611
7635
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -8302,6 +8326,7 @@ module Aws::MediaLive
|
|
|
8302
8326
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
8303
8327
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
8304
8328
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
8329
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
8305
8330
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
8306
8331
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
8307
8332
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -8342,6 +8367,7 @@ module Aws::MediaLive
|
|
|
8342
8367
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
8343
8368
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
8344
8369
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
8370
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
8345
8371
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
8346
8372
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
8347
8373
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -9560,6 +9586,7 @@ module Aws::MediaLive
|
|
|
9560
9586
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.font_size #=> String, one of "EXTRA_SMALL_10", "LARGE_48", "MEDIUM_32", "SMALL_16"
|
|
9561
9587
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.position #=> String, one of "BOTTOM_CENTER", "BOTTOM_LEFT", "BOTTOM_RIGHT", "MIDDLE_CENTER", "MIDDLE_LEFT", "MIDDLE_RIGHT", "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"
|
|
9562
9588
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_burnin_settings.prefix #=> String
|
|
9589
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.min_qp #=> Integer
|
|
9563
9590
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
|
9564
9591
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
9565
9592
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
|
@@ -9600,6 +9627,7 @@ module Aws::MediaLive
|
|
|
9600
9627
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_padding #=> String, one of "NONE", "PADDED"
|
|
9601
9628
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
|
|
9602
9629
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
|
|
9630
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
|
|
9603
9631
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
|
9604
9632
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
|
9605
9633
|
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
|
@@ -11282,14 +11310,19 @@ module Aws::MediaLive
|
|
|
11282
11310
|
# @api private
|
|
11283
11311
|
def build_request(operation_name, params = {})
|
|
11284
11312
|
handlers = @handlers.for(operation_name)
|
|
11313
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
|
11314
|
+
Aws::Telemetry.module_to_tracer_name('Aws::MediaLive')
|
|
11315
|
+
)
|
|
11285
11316
|
context = Seahorse::Client::RequestContext.new(
|
|
11286
11317
|
operation_name: operation_name,
|
|
11287
11318
|
operation: config.api.operation(operation_name),
|
|
11288
11319
|
client: self,
|
|
11289
11320
|
params: params,
|
|
11290
|
-
config: config
|
|
11321
|
+
config: config,
|
|
11322
|
+
tracer: tracer
|
|
11323
|
+
)
|
|
11291
11324
|
context[:gem_name] = 'aws-sdk-medialive'
|
|
11292
|
-
context[:gem_version] = '1.
|
|
11325
|
+
context[:gem_version] = '1.129.0'
|
|
11293
11326
|
Seahorse::Client::Request.new(handlers, context)
|
|
11294
11327
|
end
|
|
11295
11328
|
|
|
@@ -930,6 +930,7 @@ module Aws::MediaLive
|
|
|
930
930
|
__integerMin1Max3600000 = Shapes::IntegerShape.new(name: '__integerMin1Max3600000')
|
|
931
931
|
__integerMin1Max4 = Shapes::IntegerShape.new(name: '__integerMin1Max4')
|
|
932
932
|
__integerMin1Max5 = Shapes::IntegerShape.new(name: '__integerMin1Max5')
|
|
933
|
+
__integerMin1Max51 = Shapes::IntegerShape.new(name: '__integerMin1Max51')
|
|
933
934
|
__integerMin1Max6 = Shapes::IntegerShape.new(name: '__integerMin1Max6')
|
|
934
935
|
__integerMin1Max8 = Shapes::IntegerShape.new(name: '__integerMin1Max8')
|
|
935
936
|
__integerMin256Max3840 = Shapes::IntegerShape.new(name: '__integerMin256Max3840')
|
|
@@ -2557,6 +2558,7 @@ module Aws::MediaLive
|
|
|
2557
2558
|
H264Settings.add_member(:temporal_aq, Shapes::ShapeRef.new(shape: H264TemporalAq, location_name: "temporalAq"))
|
|
2558
2559
|
H264Settings.add_member(:timecode_insertion, Shapes::ShapeRef.new(shape: H264TimecodeInsertionBehavior, location_name: "timecodeInsertion"))
|
|
2559
2560
|
H264Settings.add_member(:timecode_burnin_settings, Shapes::ShapeRef.new(shape: TimecodeBurninSettings, location_name: "timecodeBurninSettings"))
|
|
2561
|
+
H264Settings.add_member(:min_qp, Shapes::ShapeRef.new(shape: __integerMin1Max51, location_name: "minQp"))
|
|
2560
2562
|
H264Settings.struct_class = Types::H264Settings
|
|
2561
2563
|
|
|
2562
2564
|
H265ColorSpaceSettings.add_member(:color_space_passthrough_settings, Shapes::ShapeRef.new(shape: ColorSpacePassthroughSettings, location_name: "colorSpacePassthroughSettings"))
|
|
@@ -2605,6 +2607,7 @@ module Aws::MediaLive
|
|
|
2605
2607
|
H265Settings.add_member(:tile_padding, Shapes::ShapeRef.new(shape: H265TilePadding, location_name: "tilePadding"))
|
|
2606
2608
|
H265Settings.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin256Max3840, location_name: "tileWidth"))
|
|
2607
2609
|
H265Settings.add_member(:treeblock_size, Shapes::ShapeRef.new(shape: H265TreeblockSize, location_name: "treeblockSize"))
|
|
2610
|
+
H265Settings.add_member(:min_qp, Shapes::ShapeRef.new(shape: __integerMin1Max51, location_name: "minQp"))
|
|
2608
2611
|
H265Settings.struct_class = Types::H265Settings
|
|
2609
2612
|
|
|
2610
2613
|
Hdr10Settings.add_member(:max_cll, Shapes::ShapeRef.new(shape: __integerMin0Max32768, location_name: "maxCll"))
|
|
@@ -5228,6 +5228,12 @@ module Aws::MediaLive
|
|
|
5228
5228
|
# Timecode burn-in settings
|
|
5229
5229
|
# @return [Types::TimecodeBurninSettings]
|
|
5230
5230
|
#
|
|
5231
|
+
# @!attribute [rw] min_qp
|
|
5232
|
+
# Sets the minimum QP. If you aren't familiar with quantization
|
|
5233
|
+
# adjustment, leave the field empty. MediaLive will apply an
|
|
5234
|
+
# appropriate value.
|
|
5235
|
+
# @return [Integer]
|
|
5236
|
+
#
|
|
5231
5237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/H264Settings AWS API Documentation
|
|
5232
5238
|
#
|
|
5233
5239
|
class H264Settings < Struct.new(
|
|
@@ -5272,7 +5278,8 @@ module Aws::MediaLive
|
|
|
5272
5278
|
:syntax,
|
|
5273
5279
|
:temporal_aq,
|
|
5274
5280
|
:timecode_insertion,
|
|
5275
|
-
:timecode_burnin_settings
|
|
5281
|
+
:timecode_burnin_settings,
|
|
5282
|
+
:min_qp)
|
|
5276
5283
|
SENSITIVE = []
|
|
5277
5284
|
include Aws::Structure
|
|
5278
5285
|
end
|
|
@@ -5548,6 +5555,12 @@ module Aws::MediaLive
|
|
|
5548
5555
|
# configurations, you typically enter "auto".
|
|
5549
5556
|
# @return [String]
|
|
5550
5557
|
#
|
|
5558
|
+
# @!attribute [rw] min_qp
|
|
5559
|
+
# Sets the minimum QP. If you aren't familiar with quantization
|
|
5560
|
+
# adjustment, leave the field empty. MediaLive will apply an
|
|
5561
|
+
# appropriate value.
|
|
5562
|
+
# @return [Integer]
|
|
5563
|
+
#
|
|
5551
5564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/H265Settings AWS API Documentation
|
|
5552
5565
|
#
|
|
5553
5566
|
class H265Settings < Struct.new(
|
|
@@ -5586,7 +5599,8 @@ module Aws::MediaLive
|
|
|
5586
5599
|
:tile_height,
|
|
5587
5600
|
:tile_padding,
|
|
5588
5601
|
:tile_width,
|
|
5589
|
-
:treeblock_size
|
|
5602
|
+
:treeblock_size,
|
|
5603
|
+
:min_qp)
|
|
5590
5604
|
SENSITIVE = []
|
|
5591
5605
|
include Aws::Structure
|
|
5592
5606
|
end
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -50,6 +50,7 @@ module Aws
|
|
|
50
50
|
?session_token: String,
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
|
52
52
|
?stub_responses: untyped,
|
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
53
54
|
?token_provider: untyped,
|
|
54
55
|
?use_dualstack_endpoint: bool,
|
|
55
56
|
?use_fips_endpoint: bool,
|
|
@@ -1100,7 +1101,8 @@ module Aws
|
|
|
1100
1101
|
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
|
1101
1102
|
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
|
1102
1103
|
prefix: ::String?
|
|
1103
|
-
}
|
|
1104
|
+
}?,
|
|
1105
|
+
min_qp: ::Integer?
|
|
1104
1106
|
}?,
|
|
1105
1107
|
h265_settings: {
|
|
1106
1108
|
adaptive_quantization: ("AUTO" | "HIGH" | "HIGHER" | "LOW" | "MAX" | "MEDIUM" | "OFF")?,
|
|
@@ -1160,7 +1162,8 @@ module Aws
|
|
|
1160
1162
|
tile_height: ::Integer?,
|
|
1161
1163
|
tile_padding: ("NONE" | "PADDED")?,
|
|
1162
1164
|
tile_width: ::Integer?,
|
|
1163
|
-
treeblock_size: ("AUTO" | "TREE_SIZE_32X32")
|
|
1165
|
+
treeblock_size: ("AUTO" | "TREE_SIZE_32X32")?,
|
|
1166
|
+
min_qp: ::Integer?
|
|
1164
1167
|
}?,
|
|
1165
1168
|
mpeg_2_settings: {
|
|
1166
1169
|
adaptive_quantization: ("AUTO" | "HIGH" | "LOW" | "MEDIUM" | "OFF")?,
|
|
@@ -2969,7 +2972,8 @@ module Aws
|
|
|
2969
2972
|
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
|
2970
2973
|
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
|
2971
2974
|
prefix: ::String?
|
|
2972
|
-
}
|
|
2975
|
+
}?,
|
|
2976
|
+
min_qp: ::Integer?
|
|
2973
2977
|
}?,
|
|
2974
2978
|
h265_settings: {
|
|
2975
2979
|
adaptive_quantization: ("AUTO" | "HIGH" | "HIGHER" | "LOW" | "MAX" | "MEDIUM" | "OFF")?,
|
|
@@ -3029,7 +3033,8 @@ module Aws
|
|
|
3029
3033
|
tile_height: ::Integer?,
|
|
3030
3034
|
tile_padding: ("NONE" | "PADDED")?,
|
|
3031
3035
|
tile_width: ::Integer?,
|
|
3032
|
-
treeblock_size: ("AUTO" | "TREE_SIZE_32X32")
|
|
3036
|
+
treeblock_size: ("AUTO" | "TREE_SIZE_32X32")?,
|
|
3037
|
+
min_qp: ::Integer?
|
|
3033
3038
|
}?,
|
|
3034
3039
|
mpeg_2_settings: {
|
|
3035
3040
|
adaptive_quantization: ("AUTO" | "HIGH" | "LOW" | "MEDIUM" | "OFF")?,
|
data/sig/resource.rbs
CHANGED
|
@@ -50,6 +50,7 @@ module Aws
|
|
|
50
50
|
?session_token: String,
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
|
52
52
|
?stub_responses: untyped,
|
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
53
54
|
?token_provider: untyped,
|
|
54
55
|
?use_dualstack_endpoint: bool,
|
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
|
@@ -1384,6 +1384,7 @@ module Aws::MediaLive
|
|
|
1384
1384
|
attr_accessor temporal_aq: ("DISABLED" | "ENABLED")
|
|
1385
1385
|
attr_accessor timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")
|
|
1386
1386
|
attr_accessor timecode_burnin_settings: Types::TimecodeBurninSettings
|
|
1387
|
+
attr_accessor min_qp: ::Integer
|
|
1387
1388
|
SENSITIVE: []
|
|
1388
1389
|
end
|
|
1389
1390
|
|
|
@@ -1438,6 +1439,7 @@ module Aws::MediaLive
|
|
|
1438
1439
|
attr_accessor tile_padding: ("NONE" | "PADDED")
|
|
1439
1440
|
attr_accessor tile_width: ::Integer
|
|
1440
1441
|
attr_accessor treeblock_size: ("AUTO" | "TREE_SIZE_32X32")
|
|
1442
|
+
attr_accessor min_qp: ::Integer
|
|
1441
1443
|
SENSITIVE: []
|
|
1442
1444
|
end
|
|
1443
1445
|
|
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.129.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: 2024-
|
|
11
|
+
date: 2024-09-03 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.203.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.203.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|