aws-sdk-health 1.22.0 → 1.23.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/lib/aws-sdk-health.rb +1 -1
- data/lib/aws-sdk-health/client.rb +19 -6
- data/lib/aws-sdk-health/resource.rb +1 -7
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f3411be511a96168fa1b5b1c7096b92a34626d424d3e5e0c74bfa4c95bbd5c2
|
4
|
+
data.tar.gz: db52bd64404b1476391bc7dbbca52f753340c5b51be25a0e1be0d907487e5dd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67a7fa743b16b980ce69e39958b678ad5c3fda456fc86ca8a9b6c2db8d7a5ef62a0d3892e404a554be85a84a03f6fb8440f100e678024bac3d8321069ed6a671
|
7
|
+
data.tar.gz: 354f91964db36da58642942a160f38ef5d54843000a14b807903d9167a0d44c33b9f689b10ec3207d12f631602876cc007d97aafbbc5582a7a26118aa5f2360e
|
data/lib/aws-sdk-health.rb
CHANGED
@@ -105,7 +105,7 @@ module Aws::Health
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::Health
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -279,8 +279,7 @@ module Aws::Health
|
|
279
279
|
#
|
280
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
281
281
|
# number of seconds to wait for response data. This value can
|
282
|
-
# safely be set
|
283
|
-
# per-request on the session yielded by {#session_for}.
|
282
|
+
# safely be set per-request on the session.
|
284
283
|
#
|
285
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
286
285
|
# seconds a connection is allowed to sit idle before it is
|
@@ -292,7 +291,7 @@ module Aws::Health
|
|
292
291
|
# request body. This option has no effect unless the request has
|
293
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
294
293
|
# disables this behaviour. This value can safely be set per
|
295
|
-
# request on the session
|
294
|
+
# request on the session.
|
296
295
|
#
|
297
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
298
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -349,6 +348,8 @@ module Aws::Health
|
|
349
348
|
# * {Types::DescribeAffectedAccountsForOrganizationResponse#affected_accounts #affected_accounts} => Array<String>
|
350
349
|
# * {Types::DescribeAffectedAccountsForOrganizationResponse#next_token #next_token} => String
|
351
350
|
#
|
351
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
352
|
+
#
|
352
353
|
# @example Request syntax with placeholder values
|
353
354
|
#
|
354
355
|
# resp = client.describe_affected_accounts_for_organization({
|
@@ -406,6 +407,8 @@ module Aws::Health
|
|
406
407
|
# * {Types::DescribeAffectedEntitiesResponse#entities #entities} => Array<Types::AffectedEntity>
|
407
408
|
# * {Types::DescribeAffectedEntitiesResponse#next_token #next_token} => String
|
408
409
|
#
|
410
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
411
|
+
#
|
409
412
|
# @example Request syntax with placeholder values
|
410
413
|
#
|
411
414
|
# resp = client.describe_affected_entities({
|
@@ -493,6 +496,8 @@ module Aws::Health
|
|
493
496
|
# * {Types::DescribeAffectedEntitiesForOrganizationResponse#failed_set #failed_set} => Array<Types::OrganizationAffectedEntitiesErrorItem>
|
494
497
|
# * {Types::DescribeAffectedEntitiesForOrganizationResponse#next_token #next_token} => String
|
495
498
|
#
|
499
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
500
|
+
#
|
496
501
|
# @example Request syntax with placeholder values
|
497
502
|
#
|
498
503
|
# resp = client.describe_affected_entities_for_organization({
|
@@ -595,6 +600,8 @@ module Aws::Health
|
|
595
600
|
# * {Types::DescribeEventAggregatesResponse#event_aggregates #event_aggregates} => Array<Types::EventAggregate>
|
596
601
|
# * {Types::DescribeEventAggregatesResponse#next_token #next_token} => String
|
597
602
|
#
|
603
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
604
|
+
#
|
598
605
|
# @example Request syntax with placeholder values
|
599
606
|
#
|
600
607
|
# resp = client.describe_event_aggregates({
|
@@ -811,6 +818,8 @@ module Aws::Health
|
|
811
818
|
# * {Types::DescribeEventTypesResponse#event_types #event_types} => Array<Types::EventType>
|
812
819
|
# * {Types::DescribeEventTypesResponse#next_token #next_token} => String
|
813
820
|
#
|
821
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
822
|
+
#
|
814
823
|
# @example Request syntax with placeholder values
|
815
824
|
#
|
816
825
|
# resp = client.describe_event_types({
|
@@ -873,6 +882,8 @@ module Aws::Health
|
|
873
882
|
# * {Types::DescribeEventsResponse#events #events} => Array<Types::Event>
|
874
883
|
# * {Types::DescribeEventsResponse#next_token #next_token} => String
|
875
884
|
#
|
885
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
886
|
+
#
|
876
887
|
# @example Request syntax with placeholder values
|
877
888
|
#
|
878
889
|
# resp = client.describe_events({
|
@@ -980,6 +991,8 @@ module Aws::Health
|
|
980
991
|
# * {Types::DescribeEventsForOrganizationResponse#events #events} => Array<Types::OrganizationEvent>
|
981
992
|
# * {Types::DescribeEventsForOrganizationResponse#next_token #next_token} => String
|
982
993
|
#
|
994
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
995
|
+
#
|
983
996
|
# @example Request syntax with placeholder values
|
984
997
|
#
|
985
998
|
# resp = client.describe_events_for_organization({
|
@@ -1105,7 +1118,7 @@ module Aws::Health
|
|
1105
1118
|
params: params,
|
1106
1119
|
config: config)
|
1107
1120
|
context[:gem_name] = 'aws-sdk-health'
|
1108
|
-
context[:gem_version] = '1.
|
1121
|
+
context[:gem_version] = '1.23.0'
|
1109
1122
|
Seahorse::Client::Request.new(handlers, context)
|
1110
1123
|
end
|
1111
1124
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::Health
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Health::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Health::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Health::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
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.23.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: 2020-
|
11
|
+
date: 2020-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
- !ruby/object:Gem::Version
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
|
-
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 2.7.6.2
|
84
85
|
signing_key:
|
85
86
|
specification_version: 4
|
86
87
|
summary: AWS SDK for Ruby - AWSHealth
|