aws-sdk-health 1.42.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: 96685e1e30a1168fa5cb1d86068f3ee9f289ab782a7369893458fcf0e14a628c
4
- data.tar.gz: 649db2c45ce45110ac1a1318ab3a15e43256623464a1093dc932bfb1e1ff0e6e
3
+ metadata.gz: e127f65593871c18a477fb822ceaa1623e43bd332d9ca1f89c2887275411ee40
4
+ data.tar.gz: a7d5f373102fc6f635887244d12a29560514d773ec6d92947c5628f2529f4d82
5
5
  SHA512:
6
- metadata.gz: 39bf2efb423c06f199636ebe9b6bd0627d642a48469becc8685b15542326b9563c7aaed9188744646dd4797deb3d19aec5556a0448857a8e2870d79ad9b3e259
7
- data.tar.gz: 84b55e5a702a86a1476ebb6ad1d5715fa6536378afcfec2ad49bcf98e682ed03e49a22110e3397f523d497d33fce439b0f1fe48e36b78a937a0548e55a72e70f
6
+ metadata.gz: 7e4bd3f841fdc6faf8aa90a13b6e037ad532469126e2d7a954ddce0cef16d553c45c3ccf71463d6cbf7f8424c5ed5fa85634884405acc06c79c45d1fa1ba502a
7
+ data.tar.gz: 862b0ed9d8cf208ffc16f09cd66fe6e5a1857685901495308d263a094ddc7aba7acccdd1056bf77e8d57606b4aa6c8e67f10319970d25bf9f13334abf4df5f72
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.45.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.44.0 (2021-12-08)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for AWS Health
18
+
19
+ 1.43.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.42.0 (2021-11-09)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.46.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::Health
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::Health
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::Health
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::Health
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::Health
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -1300,11 +1313,11 @@ module Aws::Health
1300
1313
  #
1301
1314
  # <note markdown="1"> To call this operation, you must meet the following requirements:
1302
1315
  #
1303
- # * You must have a Business or Enterprise Support plan from [Amazon Web
1304
- # Services Support][1] to use the Health API. If you call the Health
1305
- # API from an Amazon Web Services account that doesn't have a
1306
- # Business or Enterprise Support plan, you receive a
1307
- # `SubscriptionRequiredException` error.
1316
+ # * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1317
+ # plan from [Amazon Web Services Support][1] to use the Health API. If
1318
+ # you call the Health API from an Amazon Web Services account that
1319
+ # doesn't have a Business, Enterprise On-Ramp, or Enterprise Support
1320
+ # plan, you receive a `SubscriptionRequiredException` error.
1308
1321
  #
1309
1322
  # * You must have permission to call this operation from the
1310
1323
  # organization's management account. For example IAM policies, see
@@ -1347,7 +1360,7 @@ module Aws::Health
1347
1360
  params: params,
1348
1361
  config: config)
1349
1362
  context[:gem_name] = 'aws-sdk-health'
1350
- context[:gem_version] = '1.42.0'
1363
+ context[:gem_version] = '1.46.0'
1351
1364
  Seahorse::Client::Request.new(handlers, context)
1352
1365
  end
1353
1366
 
@@ -1716,7 +1716,8 @@ module Aws::Health
1716
1716
  #
1717
1717
  # * Your Amazon Web Services account doesn't include the Amazon Web
1718
1718
  # Services Support plan required to use the Health API. You must
1719
- # have either a Business or Enterprise Support plan.
1719
+ # have either a Business, Enterprise On-Ramp, or Enterprise Support
1720
+ # plan.
1720
1721
  # @return [String]
1721
1722
  #
1722
1723
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/OrganizationEventDetailsErrorItem AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-health/customizations'
48
48
  # @!group service
49
49
  module Aws::Health
50
50
 
51
- GEM_VERSION = '1.42.0'
51
+ GEM_VERSION = '1.46.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-health
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.46.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: 2021-11-09 00:00:00.000000000 Z
11
+ date: 2022-02-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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement