aws-sdk-kinesisvideomedia 1.73.0 → 1.75.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8af383294e77d75b938589c65b54e605a0863a7ad6a82faad7c2d142b5208fef
4
- data.tar.gz: c640326274528c0c11e26760bc1a492a1c0d6d3a3fe0abebc7e0eeffd15dbfbc
3
+ metadata.gz: 7a85235913f899b2380e5f0a775e10ab017aa6efe5b5d47e18053bbd985d482c
4
+ data.tar.gz: d1c0c47369e637c45787d2294d2ace94e1aea0af77aae42eb39b1f8bb957604a
5
5
  SHA512:
6
- metadata.gz: e51940de446f8905b1d41891990c405e0a688a55eda3733b94ddcee2d901318e38d37150497cba3b56ce2afbb3ff7b3c87a67604534f101e55c2eef5c4fb23cd
7
- data.tar.gz: 53ce89168b950ac689896741b439e847e5bde7eafb35e1f8835f586c7aeda254692ca7ea9b69971df7087774ff020a25ba723a0139b8c83261c4ddfaaec2f75c
6
+ metadata.gz: 8953b77b6ee99fda8d447492a26767561de093bd42a77ae0edbb99f11eb192700ba22c44564b670d6ef2c895d670d870f9b2f23b47d503c8a0b7221cff64e297
7
+ data.tar.gz: 911f729ddf3422f89246a48066a9a3ca19b672e982bddbf5418cd50a0b56e049f36804a9b3eb73e93e0f16797a889be066e43002c448252eb4d7ef8abff753a0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2025-10-17)
5
+ ------------------
6
+
7
+ * Feature - Update endpoint ruleset parameters casing
8
+
9
+ 1.74.0 (2025-08-27)
10
+ ------------------
11
+
12
+ * Feature - Remove incorrect endpoint tests
13
+
4
14
  1.73.0 (2025-08-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.73.0
1
+ 1.75.0
@@ -591,7 +591,7 @@ module Aws::KinesisVideoMedia
591
591
  tracer: tracer
592
592
  )
593
593
  context[:gem_name] = 'aws-sdk-kinesisvideomedia'
594
- context[:gem_version] = '1.73.0'
594
+ context[:gem_version] = '1.75.0'
595
595
  Seahorse::Client::Request.new(handlers, context)
596
596
  end
597
597
 
@@ -13,22 +13,22 @@ module Aws::KinesisVideoMedia
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -28,7 +28,7 @@ module Aws::KinesisVideoMedia
28
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
31
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
31
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
32
  return Aws::Endpoints::Endpoint.new(url: "https://kinesisvideo-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
33
33
  end
34
34
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -54,7 +54,7 @@ module Aws::KinesisVideoMedia
54
54
  autoload :EndpointProvider, 'aws-sdk-kinesisvideomedia/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-kinesisvideomedia/endpoints'
56
56
 
57
- GEM_VERSION = '1.73.0'
57
+ GEM_VERSION = '1.75.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesisvideomedia
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.73.0
4
+ version: 1.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services