aws-sdk-iotevents 1.44.0 → 1.46.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22425efd1f606f69869f7afd60595b575e62de0269f41743ec5932eaa05b2c69
4
- data.tar.gz: 1d560c66759c12d146494e32ce1b14f1c2e07e21aa283d4757b81372a3e51d65
3
+ metadata.gz: 0ae4140b9f9c84ef1e8c532d895e47065c6bddf1b024c7373e488f30e8fc7207
4
+ data.tar.gz: c3048ab0c9d37d58395f1f39516f94e8b4f283d6d9a2c42146ea3ab66cec6f46
5
5
  SHA512:
6
- metadata.gz: 382313d4e7a0e477b0ebc873929a97c717f1bedeea4a242ae220d7656f70a987e40e1adbb1b499268b1d09cd7deea1534d1c74a0f2670a33361cd4f12d2960cf
7
- data.tar.gz: bd3afb1ef90869f66444a6d50aa97b581f214e40c42dde22998f8c9916fb627e964548c35878f7a48102b7a8340d53416bc191d256bf40a6d2f5f5195d84f4a6
6
+ metadata.gz: f4ce38ed37b774c032a130bf3cad73c16558f65b12b4a2c060ee62d60f109fd5e7a6d63a0a7bf01041d2087aa533f838bad6eb811efd6140c5b999386d41bc02
7
+ data.tar.gz: 5158a2add6551f9f22cd4a349a6c2f604e2cafe32bb0343af75734b21d1552f6f404e75666125bd280f52ba8e4f2e92278df70f61892bfe9a5f67a74275bf5b7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2024-02-21)
5
+ ------------------
6
+
7
+ * Feature - Increase the maximum length of descriptions for Inputs, Detector Models, and Alarm Models
8
+
9
+ 1.45.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.44.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.46.0
@@ -3444,7 +3444,7 @@ module Aws::IoTEvents
3444
3444
  params: params,
3445
3445
  config: config)
3446
3446
  context[:gem_name] = 'aws-sdk-iotevents'
3447
- context[:gem_version] = '1.44.0'
3447
+ context[:gem_version] = '1.46.0'
3448
3448
  Seahorse::Client::Request.new(handlers, context)
3449
3449
  end
3450
3450
 
@@ -32,7 +32,7 @@ module Aws::IoTEvents
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://iotevents-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -14,6 +14,7 @@ module Aws::IoTEvents
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::IoTEvents::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iotevents/customizations'
52
52
  # @!group service
53
53
  module Aws::IoTEvents
54
54
 
55
- GEM_VERSION = '1.44.0'
55
+ GEM_VERSION = '1.46.0'
56
56
 
57
57
  end