aws-sdk-health 1.22.0 → 1.27.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: af61a3e944b3f215cd347b2c8bc93b7a2ff71497c48606533c1de1a13d6604b7
4
- data.tar.gz: 67aee7e728655c109d7c541fa87bdf9a7ee548ae7e88adc07d04c2a6fd6f45b2
3
+ metadata.gz: 3bc8ae00dea99726d0d4eb8ddabdc9f76ddd8dab1dc8d84e618de5a10465b455
4
+ data.tar.gz: f41bdd80e970f08668bcb3f7138997e6c3b6f05a191e98681ff39eb521406c5c
5
5
  SHA512:
6
- metadata.gz: d3119952c29e2541420200d4e91b97f7fd7a107468ea487ef0b415107ec032571ab0999dacb6eedfefa56240bd78c5779e85cdbebcc3fcdb3ff55a1682c0366d
7
- data.tar.gz: 2184fc7169a671ef51da83788c1bb46db6ee11f872d77ea354e61e145552800e5cfc8327e2941a70586fa773c9a2549fd01d2985838826072afb6b17861e2331
6
+ metadata.gz: 598c5d90ef9fb86c907d64e08d99a8cbdbc2749d6f66a5f05c032f12efc6c68739e57ac8744995bedf59916062d05e6b81d3939302f1bd4f9af3482b750fba6f
7
+ data.tar.gz: b49cb72b5b8a3af3cfaef4ba2a87e46b0db6eb7272238912e2daabf5923040c9c9f40c98a8b3835ab47b5d60da033af2979aa41a0869093b0f109bdd3cb7bf41
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-health/customizations'
45
47
  # @service
46
48
  module Aws::Health
47
49
 
48
- GEM_VERSION = '1.22.0'
50
+ GEM_VERSION = '1.27.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::Health
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
78
 
@@ -105,7 +109,7 @@ module Aws::Health
105
109
  # @option options [required, String] :region
106
110
  # The AWS region to connect to. The configured `:region` is
107
111
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
109
113
  #
110
114
  # * `Aws.config[:region]`
111
115
  # * `ENV['AWS_REGION']`
@@ -161,7 +165,7 @@ module Aws::Health
161
165
  # @option options [String] :endpoint
162
166
  # The client endpoint is normally constructed from the `:region`
163
167
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
169
  #
166
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +180,7 @@ module Aws::Health
176
180
  # requests fetching endpoints information. Defaults to 60 sec.
177
181
  #
178
182
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
184
  #
181
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
186
  # The log formatter.
@@ -279,8 +283,7 @@ module Aws::Health
279
283
  #
280
284
  # @option options [Integer] :http_read_timeout (60) The default
281
285
  # 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}.
286
+ # safely be set per-request on the session.
284
287
  #
285
288
  # @option options [Float] :http_idle_timeout (5) The number of
286
289
  # seconds a connection is allowed to sit idle before it is
@@ -292,7 +295,7 @@ module Aws::Health
292
295
  # request body. This option has no effect unless the request has
293
296
  # "Expect" header set to "100-continue". Defaults to `nil` which
294
297
  # disables this behaviour. This value can safely be set per
295
- # request on the session yielded by {#session_for}.
298
+ # request on the session.
296
299
  #
297
300
  # @option options [Boolean] :http_wire_trace (false) When `true`,
298
301
  # HTTP debug output will be sent to the `:logger`.
@@ -347,8 +350,11 @@ module Aws::Health
347
350
  # @return [Types::DescribeAffectedAccountsForOrganizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
348
351
  #
349
352
  # * {Types::DescribeAffectedAccountsForOrganizationResponse#affected_accounts #affected_accounts} => Array<String>
353
+ # * {Types::DescribeAffectedAccountsForOrganizationResponse#event_scope_code #event_scope_code} => String
350
354
  # * {Types::DescribeAffectedAccountsForOrganizationResponse#next_token #next_token} => String
351
355
  #
356
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
357
+ #
352
358
  # @example Request syntax with placeholder values
353
359
  #
354
360
  # resp = client.describe_affected_accounts_for_organization({
@@ -361,6 +367,7 @@ module Aws::Health
361
367
  #
362
368
  # resp.affected_accounts #=> Array
363
369
  # resp.affected_accounts[0] #=> String
370
+ # resp.event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
364
371
  # resp.next_token #=> String
365
372
  #
366
373
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/DescribeAffectedAccountsForOrganization AWS API Documentation
@@ -406,6 +413,8 @@ module Aws::Health
406
413
  # * {Types::DescribeAffectedEntitiesResponse#entities #entities} => Array<Types::AffectedEntity>
407
414
  # * {Types::DescribeAffectedEntitiesResponse#next_token #next_token} => String
408
415
  #
416
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
417
+ #
409
418
  # @example Request syntax with placeholder values
410
419
  #
411
420
  # resp = client.describe_affected_entities({
@@ -493,13 +502,15 @@ module Aws::Health
493
502
  # * {Types::DescribeAffectedEntitiesForOrganizationResponse#failed_set #failed_set} => Array<Types::OrganizationAffectedEntitiesErrorItem>
494
503
  # * {Types::DescribeAffectedEntitiesForOrganizationResponse#next_token #next_token} => String
495
504
  #
505
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
506
+ #
496
507
  # @example Request syntax with placeholder values
497
508
  #
498
509
  # resp = client.describe_affected_entities_for_organization({
499
510
  # organization_entity_filters: [ # required
500
511
  # {
501
512
  # event_arn: "eventArn", # required
502
- # aws_account_id: "accountId", # required
513
+ # aws_account_id: "accountId",
503
514
  # },
504
515
  # ],
505
516
  # locale: "locale",
@@ -595,6 +606,8 @@ module Aws::Health
595
606
  # * {Types::DescribeEventAggregatesResponse#event_aggregates #event_aggregates} => Array<Types::EventAggregate>
596
607
  # * {Types::DescribeEventAggregatesResponse#next_token #next_token} => String
597
608
  #
609
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
610
+ #
598
611
  # @example Request syntax with placeholder values
599
612
  #
600
613
  # resp = client.describe_event_aggregates({
@@ -697,6 +710,7 @@ module Aws::Health
697
710
  # resp.successful_set[0].event.end_time #=> Time
698
711
  # resp.successful_set[0].event.last_updated_time #=> Time
699
712
  # resp.successful_set[0].event.status_code #=> String, one of "open", "closed", "upcoming"
713
+ # resp.successful_set[0].event.event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
700
714
  # resp.successful_set[0].event_description.latest_description #=> String
701
715
  # resp.successful_set[0].event_metadata #=> Hash
702
716
  # resp.successful_set[0].event_metadata["metadataKey"] #=> String
@@ -746,7 +760,7 @@ module Aws::Health
746
760
  # organization_event_detail_filters: [ # required
747
761
  # {
748
762
  # event_arn: "eventArn", # required
749
- # aws_account_id: "accountId", # required
763
+ # aws_account_id: "accountId",
750
764
  # },
751
765
  # ],
752
766
  # locale: "locale",
@@ -766,6 +780,7 @@ module Aws::Health
766
780
  # resp.successful_set[0].event.end_time #=> Time
767
781
  # resp.successful_set[0].event.last_updated_time #=> Time
768
782
  # resp.successful_set[0].event.status_code #=> String, one of "open", "closed", "upcoming"
783
+ # resp.successful_set[0].event.event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
769
784
  # resp.successful_set[0].event_description.latest_description #=> String
770
785
  # resp.successful_set[0].event_metadata #=> Hash
771
786
  # resp.successful_set[0].event_metadata["metadataKey"] #=> String
@@ -811,6 +826,8 @@ module Aws::Health
811
826
  # * {Types::DescribeEventTypesResponse#event_types #event_types} => Array<Types::EventType>
812
827
  # * {Types::DescribeEventTypesResponse#next_token #next_token} => String
813
828
  #
829
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
830
+ #
814
831
  # @example Request syntax with placeholder values
815
832
  #
816
833
  # resp = client.describe_event_types({
@@ -873,6 +890,8 @@ module Aws::Health
873
890
  # * {Types::DescribeEventsResponse#events #events} => Array<Types::Event>
874
891
  # * {Types::DescribeEventsResponse#next_token #next_token} => String
875
892
  #
893
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
894
+ #
876
895
  # @example Request syntax with placeholder values
877
896
  #
878
897
  # resp = client.describe_events({
@@ -928,6 +947,7 @@ module Aws::Health
928
947
  # resp.events[0].end_time #=> Time
929
948
  # resp.events[0].last_updated_time #=> Time
930
949
  # resp.events[0].status_code #=> String, one of "open", "closed", "upcoming"
950
+ # resp.events[0].event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
931
951
  # resp.next_token #=> String
932
952
  #
933
953
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/DescribeEvents AWS API Documentation
@@ -980,6 +1000,8 @@ module Aws::Health
980
1000
  # * {Types::DescribeEventsForOrganizationResponse#events #events} => Array<Types::OrganizationEvent>
981
1001
  # * {Types::DescribeEventsForOrganizationResponse#next_token #next_token} => String
982
1002
  #
1003
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1004
+ #
983
1005
  # @example Request syntax with placeholder values
984
1006
  #
985
1007
  # resp = client.describe_events_for_organization({
@@ -1017,6 +1039,7 @@ module Aws::Health
1017
1039
  # resp.events[0].service #=> String
1018
1040
  # resp.events[0].event_type_code #=> String
1019
1041
  # resp.events[0].event_type_category #=> String, one of "issue", "accountNotification", "scheduledChange", "investigation"
1042
+ # resp.events[0].event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
1020
1043
  # resp.events[0].region #=> String
1021
1044
  # resp.events[0].start_time #=> Time
1022
1045
  # resp.events[0].end_time #=> Time
@@ -1105,7 +1128,7 @@ module Aws::Health
1105
1128
  params: params,
1106
1129
  config: config)
1107
1130
  context[:gem_name] = 'aws-sdk-health'
1108
- context[:gem_version] = '1.22.0'
1131
+ context[:gem_version] = '1.27.0'
1109
1132
  Seahorse::Client::Request.new(handlers, context)
1110
1133
  end
1111
1134
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -89,6 +91,7 @@ module Aws::Health
89
91
  eventArnList = Shapes::ListShape.new(name: 'eventArnList')
90
92
  eventDescription = Shapes::StringShape.new(name: 'eventDescription')
91
93
  eventMetadata = Shapes::MapShape.new(name: 'eventMetadata')
94
+ eventScopeCode = Shapes::StringShape.new(name: 'eventScopeCode')
92
95
  eventStatusCode = Shapes::StringShape.new(name: 'eventStatusCode')
93
96
  eventStatusCodeList = Shapes::ListShape.new(name: 'eventStatusCodeList')
94
97
  eventType = Shapes::StringShape.new(name: 'eventType')
@@ -136,6 +139,7 @@ module Aws::Health
136
139
  DescribeAffectedAccountsForOrganizationRequest.struct_class = Types::DescribeAffectedAccountsForOrganizationRequest
137
140
 
138
141
  DescribeAffectedAccountsForOrganizationResponse.add_member(:affected_accounts, Shapes::ShapeRef.new(shape: affectedAccountsList, location_name: "affectedAccounts"))
142
+ DescribeAffectedAccountsForOrganizationResponse.add_member(:event_scope_code, Shapes::ShapeRef.new(shape: eventScopeCode, location_name: "eventScopeCode"))
139
143
  DescribeAffectedAccountsForOrganizationResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
140
144
  DescribeAffectedAccountsForOrganizationResponse.struct_class = Types::DescribeAffectedAccountsForOrganizationResponse
141
145
 
@@ -261,10 +265,11 @@ module Aws::Health
261
265
  Event.add_member(:end_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "endTime"))
262
266
  Event.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "lastUpdatedTime"))
263
267
  Event.add_member(:status_code, Shapes::ShapeRef.new(shape: eventStatusCode, location_name: "statusCode"))
268
+ Event.add_member(:event_scope_code, Shapes::ShapeRef.new(shape: eventScopeCode, location_name: "eventScopeCode"))
264
269
  Event.struct_class = Types::Event
265
270
 
266
271
  EventAccountFilter.add_member(:event_arn, Shapes::ShapeRef.new(shape: eventArn, required: true, location_name: "eventArn"))
267
- EventAccountFilter.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: accountId, required: true, location_name: "awsAccountId"))
272
+ EventAccountFilter.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: accountId, location_name: "awsAccountId"))
268
273
  EventAccountFilter.struct_class = Types::EventAccountFilter
269
274
 
270
275
  EventAggregate.add_member(:aggregate_value, Shapes::ShapeRef.new(shape: aggregateValue, location_name: "aggregateValue"))
@@ -336,6 +341,7 @@ module Aws::Health
336
341
  OrganizationEvent.add_member(:service, Shapes::ShapeRef.new(shape: service, location_name: "service"))
337
342
  OrganizationEvent.add_member(:event_type_code, Shapes::ShapeRef.new(shape: eventTypeCode, location_name: "eventTypeCode"))
338
343
  OrganizationEvent.add_member(:event_type_category, Shapes::ShapeRef.new(shape: eventTypeCategory, location_name: "eventTypeCategory"))
344
+ OrganizationEvent.add_member(:event_scope_code, Shapes::ShapeRef.new(shape: eventScopeCode, location_name: "eventScopeCode"))
339
345
  OrganizationEvent.add_member(:region, Shapes::ShapeRef.new(shape: region, location_name: "region"))
340
346
  OrganizationEvent.add_member(:start_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "startTime"))
341
347
  OrganizationEvent.add_member(:end_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "endTime"))
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::Health
9
- # This class provides a resource oriented interface for Health.
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)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -60,6 +62,7 @@ module Aws::Health
60
62
  :last_updated_time,
61
63
  :status_code,
62
64
  :tags)
65
+ SENSITIVE = []
63
66
  include Aws::Structure
64
67
  end
65
68
 
@@ -74,6 +77,7 @@ module Aws::Health
74
77
  #
75
78
  class ConcurrentModificationException < Struct.new(
76
79
  :message)
80
+ SENSITIVE = []
77
81
  include Aws::Structure
78
82
  end
79
83
 
@@ -106,6 +110,7 @@ module Aws::Health
106
110
  class DateTimeRange < Struct.new(
107
111
  :from,
108
112
  :to)
113
+ SENSITIVE = []
109
114
  include Aws::Structure
110
115
  end
111
116
 
@@ -144,6 +149,7 @@ module Aws::Health
144
149
  :event_arn,
145
150
  :next_token,
146
151
  :max_results)
152
+ SENSITIVE = []
147
153
  include Aws::Structure
148
154
  end
149
155
 
@@ -151,6 +157,9 @@ module Aws::Health
151
157
  # A JSON set of elements of the affected accounts.
152
158
  # @return [Array<String>]
153
159
  #
160
+ # @!attribute [rw] event_scope_code
161
+ # @return [String]
162
+ #
154
163
  # @!attribute [rw] next_token
155
164
  # If the results of a search are large, only a portion of the results
156
165
  # are returned, and a `nextToken` pagination token is returned in the
@@ -163,7 +172,9 @@ module Aws::Health
163
172
  #
164
173
  class DescribeAffectedAccountsForOrganizationResponse < Struct.new(
165
174
  :affected_accounts,
175
+ :event_scope_code,
166
176
  :next_token)
177
+ SENSITIVE = []
167
178
  include Aws::Structure
168
179
  end
169
180
 
@@ -174,7 +185,7 @@ module Aws::Health
174
185
  # organization_entity_filters: [ # required
175
186
  # {
176
187
  # event_arn: "eventArn", # required
177
- # aws_account_id: "accountId", # required
188
+ # aws_account_id: "accountId",
178
189
  # },
179
190
  # ],
180
191
  # locale: "locale",
@@ -212,6 +223,7 @@ module Aws::Health
212
223
  :locale,
213
224
  :next_token,
214
225
  :max_results)
226
+ SENSITIVE = []
215
227
  include Aws::Structure
216
228
  end
217
229
 
@@ -240,6 +252,7 @@ module Aws::Health
240
252
  :entities,
241
253
  :failed_set,
242
254
  :next_token)
255
+ SENSITIVE = []
243
256
  include Aws::Structure
244
257
  end
245
258
 
@@ -299,6 +312,7 @@ module Aws::Health
299
312
  :locale,
300
313
  :next_token,
301
314
  :max_results)
315
+ SENSITIVE = []
302
316
  include Aws::Structure
303
317
  end
304
318
 
@@ -319,6 +333,7 @@ module Aws::Health
319
333
  class DescribeAffectedEntitiesResponse < Struct.new(
320
334
  :entities,
321
335
  :next_token)
336
+ SENSITIVE = []
322
337
  include Aws::Structure
323
338
  end
324
339
 
@@ -339,6 +354,7 @@ module Aws::Health
339
354
  #
340
355
  class DescribeEntityAggregatesRequest < Struct.new(
341
356
  :event_arns)
357
+ SENSITIVE = []
342
358
  include Aws::Structure
343
359
  end
344
360
 
@@ -351,6 +367,7 @@ module Aws::Health
351
367
  #
352
368
  class DescribeEntityAggregatesResponse < Struct.new(
353
369
  :entity_aggregates)
370
+ SENSITIVE = []
354
371
  include Aws::Structure
355
372
  end
356
373
 
@@ -425,6 +442,7 @@ module Aws::Health
425
442
  :aggregate_field,
426
443
  :max_results,
427
444
  :next_token)
445
+ SENSITIVE = []
428
446
  include Aws::Structure
429
447
  end
430
448
 
@@ -446,6 +464,7 @@ module Aws::Health
446
464
  class DescribeEventAggregatesResponse < Struct.new(
447
465
  :event_aggregates,
448
466
  :next_token)
467
+ SENSITIVE = []
449
468
  include Aws::Structure
450
469
  end
451
470
 
@@ -456,7 +475,7 @@ module Aws::Health
456
475
  # organization_event_detail_filters: [ # required
457
476
  # {
458
477
  # event_arn: "eventArn", # required
459
- # aws_account_id: "accountId", # required
478
+ # aws_account_id: "accountId",
460
479
  # },
461
480
  # ],
462
481
  # locale: "locale",
@@ -477,6 +496,7 @@ module Aws::Health
477
496
  class DescribeEventDetailsForOrganizationRequest < Struct.new(
478
497
  :organization_event_detail_filters,
479
498
  :locale)
499
+ SENSITIVE = []
480
500
  include Aws::Structure
481
501
  end
482
502
 
@@ -493,6 +513,7 @@ module Aws::Health
493
513
  class DescribeEventDetailsForOrganizationResponse < Struct.new(
494
514
  :successful_set,
495
515
  :failed_set)
516
+ SENSITIVE = []
496
517
  include Aws::Structure
497
518
  end
498
519
 
@@ -520,6 +541,7 @@ module Aws::Health
520
541
  class DescribeEventDetailsRequest < Struct.new(
521
542
  :event_arns,
522
543
  :locale)
544
+ SENSITIVE = []
523
545
  include Aws::Structure
524
546
  end
525
547
 
@@ -536,6 +558,7 @@ module Aws::Health
536
558
  class DescribeEventDetailsResponse < Struct.new(
537
559
  :successful_set,
538
560
  :failed_set)
561
+ SENSITIVE = []
539
562
  include Aws::Structure
540
563
  end
541
564
 
@@ -582,6 +605,7 @@ module Aws::Health
582
605
  :locale,
583
606
  :next_token,
584
607
  :max_results)
608
+ SENSITIVE = []
585
609
  include Aws::Structure
586
610
  end
587
611
 
@@ -607,6 +631,7 @@ module Aws::Health
607
631
  class DescribeEventTypesResponse < Struct.new(
608
632
  :event_types,
609
633
  :next_token)
634
+ SENSITIVE = []
610
635
  include Aws::Structure
611
636
  end
612
637
 
@@ -670,6 +695,7 @@ module Aws::Health
670
695
  :next_token,
671
696
  :max_results,
672
697
  :locale)
698
+ SENSITIVE = []
673
699
  include Aws::Structure
674
700
  end
675
701
 
@@ -690,6 +716,7 @@ module Aws::Health
690
716
  class DescribeEventsForOrganizationResponse < Struct.new(
691
717
  :events,
692
718
  :next_token)
719
+ SENSITIVE = []
693
720
  include Aws::Structure
694
721
  end
695
722
 
@@ -765,6 +792,7 @@ module Aws::Health
765
792
  :next_token,
766
793
  :max_results,
767
794
  :locale)
795
+ SENSITIVE = []
768
796
  include Aws::Structure
769
797
  end
770
798
 
@@ -785,6 +813,7 @@ module Aws::Health
785
813
  class DescribeEventsResponse < Struct.new(
786
814
  :events,
787
815
  :next_token)
816
+ SENSITIVE = []
788
817
  include Aws::Structure
789
818
  end
790
819
 
@@ -799,6 +828,7 @@ module Aws::Health
799
828
  #
800
829
  class DescribeHealthServiceStatusForOrganizationResponse < Struct.new(
801
830
  :health_service_access_status_for_organization)
831
+ SENSITIVE = []
802
832
  include Aws::Structure
803
833
  end
804
834
 
@@ -822,6 +852,7 @@ module Aws::Health
822
852
  class EntityAggregate < Struct.new(
823
853
  :event_arn,
824
854
  :count)
855
+ SENSITIVE = []
825
856
  include Aws::Structure
826
857
  end
827
858
 
@@ -886,6 +917,7 @@ module Aws::Health
886
917
  :last_updated_times,
887
918
  :tags,
888
919
  :status_codes)
920
+ SENSITIVE = []
889
921
  include Aws::Structure
890
922
  end
891
923
 
@@ -939,6 +971,9 @@ module Aws::Health
939
971
  # `closed`, and `upcoming`.
940
972
  # @return [String]
941
973
  #
974
+ # @!attribute [rw] event_scope_code
975
+ # @return [String]
976
+ #
942
977
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/Event AWS API Documentation
943
978
  #
944
979
  class Event < Struct.new(
@@ -951,7 +986,9 @@ module Aws::Health
951
986
  :start_time,
952
987
  :end_time,
953
988
  :last_updated_time,
954
- :status_code)
989
+ :status_code,
990
+ :event_scope_code)
991
+ SENSITIVE = []
955
992
  include Aws::Structure
956
993
  end
957
994
 
@@ -964,7 +1001,7 @@ module Aws::Health
964
1001
  #
965
1002
  # {
966
1003
  # event_arn: "eventArn", # required
967
- # aws_account_id: "accountId", # required
1004
+ # aws_account_id: "accountId",
968
1005
  # }
969
1006
  #
970
1007
  # @!attribute [rw] event_arn
@@ -984,6 +1021,7 @@ module Aws::Health
984
1021
  class EventAccountFilter < Struct.new(
985
1022
  :event_arn,
986
1023
  :aws_account_id)
1024
+ SENSITIVE = []
987
1025
  include Aws::Structure
988
1026
  end
989
1027
 
@@ -1003,6 +1041,7 @@ module Aws::Health
1003
1041
  class EventAggregate < Struct.new(
1004
1042
  :aggregate_value,
1005
1043
  :count)
1044
+ SENSITIVE = []
1006
1045
  include Aws::Structure
1007
1046
  end
1008
1047
 
@@ -1017,6 +1056,7 @@ module Aws::Health
1017
1056
  #
1018
1057
  class EventDescription < Struct.new(
1019
1058
  :latest_description)
1059
+ SENSITIVE = []
1020
1060
  include Aws::Structure
1021
1061
  end
1022
1062
 
@@ -1042,6 +1082,7 @@ module Aws::Health
1042
1082
  :event,
1043
1083
  :event_description,
1044
1084
  :event_metadata)
1085
+ SENSITIVE = []
1045
1086
  include Aws::Structure
1046
1087
  end
1047
1088
 
@@ -1069,6 +1110,7 @@ module Aws::Health
1069
1110
  :event_arn,
1070
1111
  :error_name,
1071
1112
  :error_message)
1113
+ SENSITIVE = []
1072
1114
  include Aws::Structure
1073
1115
  end
1074
1116
 
@@ -1187,6 +1229,7 @@ module Aws::Health
1187
1229
  :event_type_categories,
1188
1230
  :tags,
1189
1231
  :event_status_codes)
1232
+ SENSITIVE = []
1190
1233
  include Aws::Structure
1191
1234
  end
1192
1235
 
@@ -1217,6 +1260,7 @@ module Aws::Health
1217
1260
  :service,
1218
1261
  :code,
1219
1262
  :category)
1263
+ SENSITIVE = []
1220
1264
  include Aws::Structure
1221
1265
  end
1222
1266
 
@@ -1252,6 +1296,7 @@ module Aws::Health
1252
1296
  :event_type_codes,
1253
1297
  :services,
1254
1298
  :event_type_categories)
1299
+ SENSITIVE = []
1255
1300
  include Aws::Structure
1256
1301
  end
1257
1302
 
@@ -1264,6 +1309,7 @@ module Aws::Health
1264
1309
  #
1265
1310
  class InvalidPaginationToken < Struct.new(
1266
1311
  :message)
1312
+ SENSITIVE = []
1267
1313
  include Aws::Structure
1268
1314
  end
1269
1315
 
@@ -1300,6 +1346,7 @@ module Aws::Health
1300
1346
  :event_arn,
1301
1347
  :error_name,
1302
1348
  :error_message)
1349
+ SENSITIVE = []
1303
1350
  include Aws::Structure
1304
1351
  end
1305
1352
 
@@ -1328,6 +1375,9 @@ module Aws::Health
1328
1375
  # The category of the event type.
1329
1376
  # @return [String]
1330
1377
  #
1378
+ # @!attribute [rw] event_scope_code
1379
+ # @return [String]
1380
+ #
1331
1381
  # @!attribute [rw] region
1332
1382
  # The AWS Region name of the event.
1333
1383
  # @return [String]
@@ -1356,11 +1406,13 @@ module Aws::Health
1356
1406
  :service,
1357
1407
  :event_type_code,
1358
1408
  :event_type_category,
1409
+ :event_scope_code,
1359
1410
  :region,
1360
1411
  :start_time,
1361
1412
  :end_time,
1362
1413
  :last_updated_time,
1363
1414
  :status_code)
1415
+ SENSITIVE = []
1364
1416
  include Aws::Structure
1365
1417
  end
1366
1418
 
@@ -1393,6 +1445,7 @@ module Aws::Health
1393
1445
  :event,
1394
1446
  :event_description,
1395
1447
  :event_metadata)
1448
+ SENSITIVE = []
1396
1449
  include Aws::Structure
1397
1450
  end
1398
1451
 
@@ -1427,6 +1480,7 @@ module Aws::Health
1427
1480
  :event_arn,
1428
1481
  :error_name,
1429
1482
  :error_message)
1483
+ SENSITIVE = []
1430
1484
  include Aws::Structure
1431
1485
  end
1432
1486
 
@@ -1539,6 +1593,7 @@ module Aws::Health
1539
1593
  :entity_values,
1540
1594
  :event_type_categories,
1541
1595
  :event_status_codes)
1596
+ SENSITIVE = []
1542
1597
  include Aws::Structure
1543
1598
  end
1544
1599
 
@@ -1551,6 +1606,7 @@ module Aws::Health
1551
1606
  #
1552
1607
  class UnsupportedLocale < Struct.new(
1553
1608
  :message)
1609
+ SENSITIVE = []
1554
1610
  include Aws::Structure
1555
1611
  end
1556
1612
 
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.22.0
4
+ version: 1.27.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-03-16 00:00:00.000000000 Z
11
+ date: 2020-06-23 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -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
- rubygems_version: 3.0.3
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