aws-sdk-medialive 1.181.0 → 1.182.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 +1 -1
- data/lib/aws-sdk-medialive/client_api.rb +1 -0
- data/lib/aws-sdk-medialive/types.rb +6 -1
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +4 -0
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea890df89563f08ffb065287c599ff28853c14a826daf3ae4180fe93e3fffeab
|
|
4
|
+
data.tar.gz: fcfa066515699c514d783d5a6c8243225acfcd5be65ca298c7af4430fd841676
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c03dd0db1ba3793059db0c9c9a1088f242a9ab7ea00414df1dc48b2bef9827eb44837389543d893fd33b57e120a3caa51434e5145272966063cb7ad331e9e508
|
|
7
|
+
data.tar.gz: aefb74c5ac6dace5bc50f87cc75eed7e26876a1a7c60b58d7f8106df4ce980cdebc07df1bd839eecf869aa2c39414c578b290cbd4658a972aa41931810b51a81
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.182.0 (2026-04-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Elemental MediaLive released a new features that allows customers to use HLG 2020 as a color space for AV1 video codec.
|
|
8
|
+
|
|
4
9
|
1.181.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.182.0
|
|
@@ -14973,7 +14973,7 @@ module Aws::MediaLive
|
|
|
14973
14973
|
tracer: tracer
|
|
14974
14974
|
)
|
|
14975
14975
|
context[:gem_name] = 'aws-sdk-medialive'
|
|
14976
|
-
context[:gem_version] = '1.
|
|
14976
|
+
context[:gem_version] = '1.182.0'
|
|
14977
14977
|
Seahorse::Client::Request.new(handlers, context)
|
|
14978
14978
|
end
|
|
14979
14979
|
|
|
@@ -1450,6 +1450,7 @@ module Aws::MediaLive
|
|
|
1450
1450
|
Av1ColorSpaceSettings.add_member(:hdr_10_settings, Shapes::ShapeRef.new(shape: Hdr10Settings, location_name: "hdr10Settings"))
|
|
1451
1451
|
Av1ColorSpaceSettings.add_member(:rec_601_settings, Shapes::ShapeRef.new(shape: Rec601Settings, location_name: "rec601Settings"))
|
|
1452
1452
|
Av1ColorSpaceSettings.add_member(:rec_709_settings, Shapes::ShapeRef.new(shape: Rec709Settings, location_name: "rec709Settings"))
|
|
1453
|
+
Av1ColorSpaceSettings.add_member(:hlg_2020_settings, Shapes::ShapeRef.new(shape: Hlg2020Settings, location_name: "hlg2020Settings"))
|
|
1453
1454
|
Av1ColorSpaceSettings.struct_class = Types::Av1ColorSpaceSettings
|
|
1454
1455
|
|
|
1455
1456
|
Av1Settings.add_member(:afd_signaling, Shapes::ShapeRef.new(shape: AfdSignaling, location_name: "afdSignaling"))
|
|
@@ -18570,13 +18570,18 @@ module Aws::MediaLive
|
|
|
18570
18570
|
# Rec709 Settings
|
|
18571
18571
|
# @return [Types::Rec709Settings]
|
|
18572
18572
|
#
|
|
18573
|
+
# @!attribute [rw] hlg_2020_settings
|
|
18574
|
+
# Hlg2020 Settings
|
|
18575
|
+
# @return [Types::Hlg2020Settings]
|
|
18576
|
+
#
|
|
18573
18577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Av1ColorSpaceSettings AWS API Documentation
|
|
18574
18578
|
#
|
|
18575
18579
|
class Av1ColorSpaceSettings < Struct.new(
|
|
18576
18580
|
:color_space_passthrough_settings,
|
|
18577
18581
|
:hdr_10_settings,
|
|
18578
18582
|
:rec_601_settings,
|
|
18579
|
-
:rec_709_settings
|
|
18583
|
+
:rec_709_settings,
|
|
18584
|
+
:hlg_2020_settings)
|
|
18580
18585
|
SENSITIVE = []
|
|
18581
18586
|
include Aws::Structure
|
|
18582
18587
|
end
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1401,6 +1401,8 @@ module Aws
|
|
|
1401
1401
|
rec_601_settings: {
|
|
1402
1402
|
}?,
|
|
1403
1403
|
rec_709_settings: {
|
|
1404
|
+
}?,
|
|
1405
|
+
hlg_2020_settings: {
|
|
1404
1406
|
}?
|
|
1405
1407
|
}?,
|
|
1406
1408
|
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
|
@@ -3607,6 +3609,8 @@ module Aws
|
|
|
3607
3609
|
rec_601_settings: {
|
|
3608
3610
|
}?,
|
|
3609
3611
|
rec_709_settings: {
|
|
3612
|
+
}?,
|
|
3613
|
+
hlg_2020_settings: {
|
|
3610
3614
|
}?
|
|
3611
3615
|
}?,
|
|
3612
3616
|
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
data/sig/types.rbs
CHANGED
|
@@ -4798,6 +4798,7 @@ module Aws::MediaLive
|
|
|
4798
4798
|
attr_accessor hdr_10_settings: Types::Hdr10Settings
|
|
4799
4799
|
attr_accessor rec_601_settings: Types::Rec601Settings
|
|
4800
4800
|
attr_accessor rec_709_settings: Types::Rec709Settings
|
|
4801
|
+
attr_accessor hlg_2020_settings: Types::Hlg2020Settings
|
|
4801
4802
|
SENSITIVE: []
|
|
4802
4803
|
end
|
|
4803
4804
|
|