aws-sdk-mediatailor 1.99.0 → 1.100.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-mediatailor/client.rb +2 -3
- data/lib/aws-sdk-mediatailor/client_api.rb +1 -1
- data/lib/aws-sdk-mediatailor.rb +1 -1
- 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: b24ef84caad0a16ec935b404e973aa53fe285bd370d4c580938246c0f77b66a3
|
4
|
+
data.tar.gz: '0709f5761ad4ac8d3c21dd1deb2cd02851e54f64909eb4f794a9b3cbaffec16b'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e08173fc9c0a7ba7b3eeb4d2a41a5a1f2e498ec2041de857fbbefced8c43a4c330597adb0ff7b228f48066eb5bbabdc51e3b0d4ce4211b2f714d0613e54322c
|
7
|
+
data.tar.gz: c739be6f733c09e7a7c00aba4ae4b4f788e1bbdaf862d2c0b33944561aea9dfb99f79c608b7844e115c4f9c912ba762a8b8f7c83d3403d6ade1007bd0d40e680
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.100.0 (2025-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documenting that EnabledLoggingStrategies is always present in responses of PlaybackConfiguration read operations.
|
8
|
+
|
4
9
|
1.99.0 (2025-05-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.100.0
|
@@ -200,8 +200,7 @@ module Aws::MediaTailor
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -3645,7 +3644,7 @@ module Aws::MediaTailor
|
|
3645
3644
|
tracer: tracer
|
3646
3645
|
)
|
3647
3646
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
3648
|
-
context[:gem_version] = '1.
|
3647
|
+
context[:gem_version] = '1.100.0'
|
3649
3648
|
Seahorse::Client::Request.new(handlers, context)
|
3650
3649
|
end
|
3651
3650
|
|
@@ -756,7 +756,7 @@ module Aws::MediaTailor
|
|
756
756
|
LiveSource.struct_class = Types::LiveSource
|
757
757
|
|
758
758
|
LogConfiguration.add_member(:percent_enabled, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "PercentEnabled"))
|
759
|
-
LogConfiguration.add_member(:enabled_logging_strategies, Shapes::ShapeRef.new(shape: __listOfLoggingStrategies, location_name: "EnabledLoggingStrategies"))
|
759
|
+
LogConfiguration.add_member(:enabled_logging_strategies, Shapes::ShapeRef.new(shape: __listOfLoggingStrategies, required: true, location_name: "EnabledLoggingStrategies"))
|
760
760
|
LogConfiguration.add_member(:ads_interaction_log, Shapes::ShapeRef.new(shape: AdsInteractionLog, location_name: "AdsInteractionLog"))
|
761
761
|
LogConfiguration.add_member(:manifest_service_interaction_log, Shapes::ShapeRef.new(shape: ManifestServiceInteractionLog, location_name: "ManifestServiceInteractionLog"))
|
762
762
|
LogConfiguration.struct_class = Types::LogConfiguration
|
data/lib/aws-sdk-mediatailor.rb
CHANGED