aws-sdk-health 1.71.0 → 1.73.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-health/client.rb +1 -3
- data/lib/aws-sdk-health/client_api.rb +1 -0
- data/lib/aws-sdk-health/types.rb +1 -0
- data/lib/aws-sdk-health.rb +15 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76d207058d412c596555ff9b93fb20864c24aaca7b9ff1dbfba1c62ebc541581
|
4
|
+
data.tar.gz: d6e76723a00c2877a5f367bfd33d7d465403dae9a2a78656b43e13e2d54a6eb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea2d008454948165c1d664ab272ea7103c6a899a4a4ce07bef7d726f23962455bef3edc62588e0d3fdc0b834be125b29aed764857e440e4f17db55914f284c59
|
7
|
+
data.tar.gz: 196858fe5c02102d717189d70b3ef1ac5bb04643d4fb2cab71b59a77250d7e8fd084e697611dc2f66b1a48862f85e9e77721c5120a79ce6337b244f9dd1df4da
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.73.0 (2024-09-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.72.0 (2024-09-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.71.0 (2024-09-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.73.0
|
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:health)
|
40
|
-
|
41
39
|
module Aws::Health
|
42
40
|
# An API client for Health. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -1521,7 +1519,7 @@ module Aws::Health
|
|
1521
1519
|
tracer: tracer
|
1522
1520
|
)
|
1523
1521
|
context[:gem_name] = 'aws-sdk-health'
|
1524
|
-
context[:gem_version] = '1.
|
1522
|
+
context[:gem_version] = '1.73.0'
|
1525
1523
|
Seahorse::Client::Request.new(handlers, context)
|
1526
1524
|
end
|
1527
1525
|
|
data/lib/aws-sdk-health/types.rb
CHANGED
data/lib/aws-sdk-health.rb
CHANGED
@@ -11,16 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-health/client_api'
|
16
|
-
require_relative 'aws-sdk-health/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-health/client'
|
18
|
-
require_relative 'aws-sdk-health/errors'
|
19
|
-
require_relative 'aws-sdk-health/resource'
|
20
|
-
require_relative 'aws-sdk-health/endpoint_parameters'
|
21
|
-
require_relative 'aws-sdk-health/endpoint_provider'
|
22
|
-
require_relative 'aws-sdk-health/endpoints'
|
23
|
-
require_relative 'aws-sdk-health/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:health)
|
24
15
|
|
25
16
|
# This module provides support for AWS Health APIs and Notifications. This module is available in the
|
26
17
|
# `aws-sdk-health` gem.
|
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-health/customizations'
|
|
51
42
|
#
|
52
43
|
# @!group service
|
53
44
|
module Aws::Health
|
45
|
+
autoload :Types, 'aws-sdk-health/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-health/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-health/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-health/client'
|
51
|
+
autoload :Errors, 'aws-sdk-health/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-health/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-health/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-health/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-health/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.73.0'
|
56
58
|
|
57
59
|
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-health/customizations'
|
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.
|
4
|
+
version: 1.73.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: 2024-09-
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|