aws-sdk-health 1.59.0 → 1.60.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-health/client.rb +1 -1
- data/lib/aws-sdk-health/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-health.rb +1 -1
- data/sig/client.rbs +356 -0
- data/sig/errors.rbs +25 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +363 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ba403ef44cba5573cc901f510aff86a94535e608af361447e091ebd1a1418db
|
4
|
+
data.tar.gz: 24b37b8629e1ed27b03c92c352ea1b008ca14c325336d68069355d59e3339386
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 685481f3ceefbb32454300814683121ba7ab328c0a87cdca405d496efcc8844731ec9b5eddaa043e07351e1a5f0e410e12074faf1030757026f3f7ae14115189
|
7
|
+
data.tar.gz: 3cc088b147efe46825e91b8a44672952a7cbdd5c3977e02c315013272ed4e190a38ccd2b9261b018c11d14359cbbfbbedf973a309f69981a3946b84251d5005c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
@@ -1458,7 +1458,7 @@ module Aws::Health
|
|
1458
1458
|
params: params,
|
1459
1459
|
config: config)
|
1460
1460
|
context[:gem_name] = 'aws-sdk-health'
|
1461
|
-
context[:gem_version] = '1.
|
1461
|
+
context[:gem_version] = '1.60.0'
|
1462
1462
|
Seahorse::Client::Request.new(handlers, context)
|
1463
1463
|
end
|
1464
1464
|
|
@@ -14,6 +14,7 @@ module Aws::Health
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Health::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 '\
|
data/lib/aws-sdk-health.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,356 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Health
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _DescribeAffectedAccountsForOrganizationResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAffectedAccountsForOrganizationResponse]
|
78
|
+
def affected_accounts: () -> ::Array[::String]
|
79
|
+
def event_scope_code: () -> ("PUBLIC" | "ACCOUNT_SPECIFIC" | "NONE")
|
80
|
+
def next_token: () -> ::String
|
81
|
+
end
|
82
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_affected_accounts_for_organization-instance_method
|
83
|
+
def describe_affected_accounts_for_organization: (
|
84
|
+
event_arn: ::String,
|
85
|
+
?next_token: ::String,
|
86
|
+
?max_results: ::Integer
|
87
|
+
) -> _DescribeAffectedAccountsForOrganizationResponseSuccess
|
88
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAffectedAccountsForOrganizationResponseSuccess
|
89
|
+
|
90
|
+
interface _DescribeAffectedEntitiesResponseSuccess
|
91
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAffectedEntitiesResponse]
|
92
|
+
def entities: () -> ::Array[Types::AffectedEntity]
|
93
|
+
def next_token: () -> ::String
|
94
|
+
end
|
95
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_affected_entities-instance_method
|
96
|
+
def describe_affected_entities: (
|
97
|
+
filter: {
|
98
|
+
event_arns: Array[::String],
|
99
|
+
entity_arns: Array[::String]?,
|
100
|
+
entity_values: Array[::String]?,
|
101
|
+
last_updated_times: Array[
|
102
|
+
{
|
103
|
+
from: ::Time?,
|
104
|
+
to: ::Time?
|
105
|
+
},
|
106
|
+
]?,
|
107
|
+
tags: Array[
|
108
|
+
Hash[::String, ::String],
|
109
|
+
]?,
|
110
|
+
status_codes: Array[("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED")]?
|
111
|
+
},
|
112
|
+
?locale: ::String,
|
113
|
+
?next_token: ::String,
|
114
|
+
?max_results: ::Integer
|
115
|
+
) -> _DescribeAffectedEntitiesResponseSuccess
|
116
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAffectedEntitiesResponseSuccess
|
117
|
+
|
118
|
+
interface _DescribeAffectedEntitiesForOrganizationResponseSuccess
|
119
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAffectedEntitiesForOrganizationResponse]
|
120
|
+
def entities: () -> ::Array[Types::AffectedEntity]
|
121
|
+
def failed_set: () -> ::Array[Types::OrganizationAffectedEntitiesErrorItem]
|
122
|
+
def next_token: () -> ::String
|
123
|
+
end
|
124
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_affected_entities_for_organization-instance_method
|
125
|
+
def describe_affected_entities_for_organization: (
|
126
|
+
?organization_entity_filters: Array[
|
127
|
+
{
|
128
|
+
event_arn: ::String,
|
129
|
+
aws_account_id: ::String?
|
130
|
+
},
|
131
|
+
],
|
132
|
+
?locale: ::String,
|
133
|
+
?next_token: ::String,
|
134
|
+
?max_results: ::Integer,
|
135
|
+
?organization_entity_account_filters: Array[
|
136
|
+
{
|
137
|
+
event_arn: ::String,
|
138
|
+
aws_account_id: ::String?,
|
139
|
+
status_codes: Array[("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED")]?
|
140
|
+
},
|
141
|
+
]
|
142
|
+
) -> _DescribeAffectedEntitiesForOrganizationResponseSuccess
|
143
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAffectedEntitiesForOrganizationResponseSuccess
|
144
|
+
|
145
|
+
interface _DescribeEntityAggregatesResponseSuccess
|
146
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEntityAggregatesResponse]
|
147
|
+
def entity_aggregates: () -> ::Array[Types::EntityAggregate]
|
148
|
+
end
|
149
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_entity_aggregates-instance_method
|
150
|
+
def describe_entity_aggregates: (
|
151
|
+
?event_arns: Array[::String]
|
152
|
+
) -> _DescribeEntityAggregatesResponseSuccess
|
153
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEntityAggregatesResponseSuccess
|
154
|
+
|
155
|
+
interface _DescribeEntityAggregatesForOrganizationResponseSuccess
|
156
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEntityAggregatesForOrganizationResponse]
|
157
|
+
def organization_entity_aggregates: () -> ::Array[Types::OrganizationEntityAggregate]
|
158
|
+
end
|
159
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_entity_aggregates_for_organization-instance_method
|
160
|
+
def describe_entity_aggregates_for_organization: (
|
161
|
+
event_arns: Array[::String],
|
162
|
+
?aws_account_ids: Array[::String]
|
163
|
+
) -> _DescribeEntityAggregatesForOrganizationResponseSuccess
|
164
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEntityAggregatesForOrganizationResponseSuccess
|
165
|
+
|
166
|
+
interface _DescribeEventAggregatesResponseSuccess
|
167
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventAggregatesResponse]
|
168
|
+
def event_aggregates: () -> ::Array[Types::EventAggregate]
|
169
|
+
def next_token: () -> ::String
|
170
|
+
end
|
171
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_event_aggregates-instance_method
|
172
|
+
def describe_event_aggregates: (
|
173
|
+
?filter: {
|
174
|
+
event_arns: Array[::String]?,
|
175
|
+
event_type_codes: Array[::String]?,
|
176
|
+
services: Array[::String]?,
|
177
|
+
regions: Array[::String]?,
|
178
|
+
availability_zones: Array[::String]?,
|
179
|
+
start_times: Array[
|
180
|
+
{
|
181
|
+
from: ::Time?,
|
182
|
+
to: ::Time?
|
183
|
+
},
|
184
|
+
]?,
|
185
|
+
end_times: Array[
|
186
|
+
{
|
187
|
+
from: ::Time?,
|
188
|
+
to: ::Time?
|
189
|
+
},
|
190
|
+
]?,
|
191
|
+
last_updated_times: Array[
|
192
|
+
{
|
193
|
+
from: ::Time?,
|
194
|
+
to: ::Time?
|
195
|
+
},
|
196
|
+
]?,
|
197
|
+
entity_arns: Array[::String]?,
|
198
|
+
entity_values: Array[::String]?,
|
199
|
+
event_type_categories: Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]?,
|
200
|
+
tags: Array[
|
201
|
+
Hash[::String, ::String],
|
202
|
+
]?,
|
203
|
+
event_status_codes: Array[("open" | "closed" | "upcoming")]?
|
204
|
+
},
|
205
|
+
aggregate_field: ("eventTypeCategory"),
|
206
|
+
?max_results: ::Integer,
|
207
|
+
?next_token: ::String
|
208
|
+
) -> _DescribeEventAggregatesResponseSuccess
|
209
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventAggregatesResponseSuccess
|
210
|
+
|
211
|
+
interface _DescribeEventDetailsResponseSuccess
|
212
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventDetailsResponse]
|
213
|
+
def successful_set: () -> ::Array[Types::EventDetails]
|
214
|
+
def failed_set: () -> ::Array[Types::EventDetailsErrorItem]
|
215
|
+
end
|
216
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_event_details-instance_method
|
217
|
+
def describe_event_details: (
|
218
|
+
event_arns: Array[::String],
|
219
|
+
?locale: ::String
|
220
|
+
) -> _DescribeEventDetailsResponseSuccess
|
221
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventDetailsResponseSuccess
|
222
|
+
|
223
|
+
interface _DescribeEventDetailsForOrganizationResponseSuccess
|
224
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventDetailsForOrganizationResponse]
|
225
|
+
def successful_set: () -> ::Array[Types::OrganizationEventDetails]
|
226
|
+
def failed_set: () -> ::Array[Types::OrganizationEventDetailsErrorItem]
|
227
|
+
end
|
228
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_event_details_for_organization-instance_method
|
229
|
+
def describe_event_details_for_organization: (
|
230
|
+
organization_event_detail_filters: Array[
|
231
|
+
{
|
232
|
+
event_arn: ::String,
|
233
|
+
aws_account_id: ::String?
|
234
|
+
},
|
235
|
+
],
|
236
|
+
?locale: ::String
|
237
|
+
) -> _DescribeEventDetailsForOrganizationResponseSuccess
|
238
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventDetailsForOrganizationResponseSuccess
|
239
|
+
|
240
|
+
interface _DescribeEventTypesResponseSuccess
|
241
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventTypesResponse]
|
242
|
+
def event_types: () -> ::Array[Types::EventType]
|
243
|
+
def next_token: () -> ::String
|
244
|
+
end
|
245
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_event_types-instance_method
|
246
|
+
def describe_event_types: (
|
247
|
+
?filter: {
|
248
|
+
event_type_codes: Array[::String]?,
|
249
|
+
services: Array[::String]?,
|
250
|
+
event_type_categories: Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]?
|
251
|
+
},
|
252
|
+
?locale: ::String,
|
253
|
+
?next_token: ::String,
|
254
|
+
?max_results: ::Integer
|
255
|
+
) -> _DescribeEventTypesResponseSuccess
|
256
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventTypesResponseSuccess
|
257
|
+
|
258
|
+
interface _DescribeEventsResponseSuccess
|
259
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsResponse]
|
260
|
+
def events: () -> ::Array[Types::Event]
|
261
|
+
def next_token: () -> ::String
|
262
|
+
end
|
263
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_events-instance_method
|
264
|
+
def describe_events: (
|
265
|
+
?filter: {
|
266
|
+
event_arns: Array[::String]?,
|
267
|
+
event_type_codes: Array[::String]?,
|
268
|
+
services: Array[::String]?,
|
269
|
+
regions: Array[::String]?,
|
270
|
+
availability_zones: Array[::String]?,
|
271
|
+
start_times: Array[
|
272
|
+
{
|
273
|
+
from: ::Time?,
|
274
|
+
to: ::Time?
|
275
|
+
},
|
276
|
+
]?,
|
277
|
+
end_times: Array[
|
278
|
+
{
|
279
|
+
from: ::Time?,
|
280
|
+
to: ::Time?
|
281
|
+
},
|
282
|
+
]?,
|
283
|
+
last_updated_times: Array[
|
284
|
+
{
|
285
|
+
from: ::Time?,
|
286
|
+
to: ::Time?
|
287
|
+
},
|
288
|
+
]?,
|
289
|
+
entity_arns: Array[::String]?,
|
290
|
+
entity_values: Array[::String]?,
|
291
|
+
event_type_categories: Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]?,
|
292
|
+
tags: Array[
|
293
|
+
Hash[::String, ::String],
|
294
|
+
]?,
|
295
|
+
event_status_codes: Array[("open" | "closed" | "upcoming")]?
|
296
|
+
},
|
297
|
+
?next_token: ::String,
|
298
|
+
?max_results: ::Integer,
|
299
|
+
?locale: ::String
|
300
|
+
) -> _DescribeEventsResponseSuccess
|
301
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
|
302
|
+
|
303
|
+
interface _DescribeEventsForOrganizationResponseSuccess
|
304
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsForOrganizationResponse]
|
305
|
+
def events: () -> ::Array[Types::OrganizationEvent]
|
306
|
+
def next_token: () -> ::String
|
307
|
+
end
|
308
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_events_for_organization-instance_method
|
309
|
+
def describe_events_for_organization: (
|
310
|
+
?filter: {
|
311
|
+
event_type_codes: Array[::String]?,
|
312
|
+
aws_account_ids: Array[::String]?,
|
313
|
+
services: Array[::String]?,
|
314
|
+
regions: Array[::String]?,
|
315
|
+
start_time: {
|
316
|
+
from: ::Time?,
|
317
|
+
to: ::Time?
|
318
|
+
}?,
|
319
|
+
end_time: {
|
320
|
+
from: ::Time?,
|
321
|
+
to: ::Time?
|
322
|
+
}?,
|
323
|
+
last_updated_time: {
|
324
|
+
from: ::Time?,
|
325
|
+
to: ::Time?
|
326
|
+
}?,
|
327
|
+
entity_arns: Array[::String]?,
|
328
|
+
entity_values: Array[::String]?,
|
329
|
+
event_type_categories: Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]?,
|
330
|
+
event_status_codes: Array[("open" | "closed" | "upcoming")]?
|
331
|
+
},
|
332
|
+
?next_token: ::String,
|
333
|
+
?max_results: ::Integer,
|
334
|
+
?locale: ::String
|
335
|
+
) -> _DescribeEventsForOrganizationResponseSuccess
|
336
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsForOrganizationResponseSuccess
|
337
|
+
|
338
|
+
interface _DescribeHealthServiceStatusForOrganizationResponseSuccess
|
339
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeHealthServiceStatusForOrganizationResponse]
|
340
|
+
def health_service_access_status_for_organization: () -> ::String
|
341
|
+
end
|
342
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_health_service_status_for_organization-instance_method
|
343
|
+
def describe_health_service_status_for_organization: () -> _DescribeHealthServiceStatusForOrganizationResponseSuccess
|
344
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHealthServiceStatusForOrganizationResponseSuccess
|
345
|
+
|
346
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#disable_health_service_access_for_organization-instance_method
|
347
|
+
def disable_health_service_access_for_organization: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
348
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
349
|
+
|
350
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#enable_health_service_access_for_organization-instance_method
|
351
|
+
def enable_health_service_access_for_organization: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
352
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
353
|
+
end
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Health
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class ConcurrentModificationException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InvalidPaginationToken < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class UnsupportedLocale < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Health
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> void
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
74
|
+
|
75
|
+
def client: () -> Client
|
76
|
+
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,363 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Health
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccountEntityAggregate
|
12
|
+
attr_accessor account_id: ::String
|
13
|
+
attr_accessor count: ::Integer
|
14
|
+
attr_accessor statuses: ::Hash[("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED"), ::Integer]
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AffectedEntity
|
19
|
+
attr_accessor entity_arn: ::String
|
20
|
+
attr_accessor event_arn: ::String
|
21
|
+
attr_accessor entity_value: ::String
|
22
|
+
attr_accessor entity_url: ::String
|
23
|
+
attr_accessor aws_account_id: ::String
|
24
|
+
attr_accessor last_updated_time: ::Time
|
25
|
+
attr_accessor status_code: ("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED")
|
26
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class ConcurrentModificationException
|
31
|
+
attr_accessor message: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class DateTimeRange
|
36
|
+
attr_accessor from: ::Time
|
37
|
+
attr_accessor to: ::Time
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class DescribeAffectedAccountsForOrganizationRequest
|
42
|
+
attr_accessor event_arn: ::String
|
43
|
+
attr_accessor next_token: ::String
|
44
|
+
attr_accessor max_results: ::Integer
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class DescribeAffectedAccountsForOrganizationResponse
|
49
|
+
attr_accessor affected_accounts: ::Array[::String]
|
50
|
+
attr_accessor event_scope_code: ("PUBLIC" | "ACCOUNT_SPECIFIC" | "NONE")
|
51
|
+
attr_accessor next_token: ::String
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class DescribeAffectedEntitiesForOrganizationRequest
|
56
|
+
attr_accessor organization_entity_filters: ::Array[Types::EventAccountFilter]
|
57
|
+
attr_accessor locale: ::String
|
58
|
+
attr_accessor next_token: ::String
|
59
|
+
attr_accessor max_results: ::Integer
|
60
|
+
attr_accessor organization_entity_account_filters: ::Array[Types::EntityAccountFilter]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class DescribeAffectedEntitiesForOrganizationResponse
|
65
|
+
attr_accessor entities: ::Array[Types::AffectedEntity]
|
66
|
+
attr_accessor failed_set: ::Array[Types::OrganizationAffectedEntitiesErrorItem]
|
67
|
+
attr_accessor next_token: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class DescribeAffectedEntitiesRequest
|
72
|
+
attr_accessor filter: Types::EntityFilter
|
73
|
+
attr_accessor locale: ::String
|
74
|
+
attr_accessor next_token: ::String
|
75
|
+
attr_accessor max_results: ::Integer
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class DescribeAffectedEntitiesResponse
|
80
|
+
attr_accessor entities: ::Array[Types::AffectedEntity]
|
81
|
+
attr_accessor next_token: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class DescribeEntityAggregatesForOrganizationRequest
|
86
|
+
attr_accessor event_arns: ::Array[::String]
|
87
|
+
attr_accessor aws_account_ids: ::Array[::String]
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class DescribeEntityAggregatesForOrganizationResponse
|
92
|
+
attr_accessor organization_entity_aggregates: ::Array[Types::OrganizationEntityAggregate]
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class DescribeEntityAggregatesRequest
|
97
|
+
attr_accessor event_arns: ::Array[::String]
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class DescribeEntityAggregatesResponse
|
102
|
+
attr_accessor entity_aggregates: ::Array[Types::EntityAggregate]
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class DescribeEventAggregatesRequest
|
107
|
+
attr_accessor filter: Types::EventFilter
|
108
|
+
attr_accessor aggregate_field: ("eventTypeCategory")
|
109
|
+
attr_accessor max_results: ::Integer
|
110
|
+
attr_accessor next_token: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class DescribeEventAggregatesResponse
|
115
|
+
attr_accessor event_aggregates: ::Array[Types::EventAggregate]
|
116
|
+
attr_accessor next_token: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class DescribeEventDetailsForOrganizationRequest
|
121
|
+
attr_accessor organization_event_detail_filters: ::Array[Types::EventAccountFilter]
|
122
|
+
attr_accessor locale: ::String
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class DescribeEventDetailsForOrganizationResponse
|
127
|
+
attr_accessor successful_set: ::Array[Types::OrganizationEventDetails]
|
128
|
+
attr_accessor failed_set: ::Array[Types::OrganizationEventDetailsErrorItem]
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class DescribeEventDetailsRequest
|
133
|
+
attr_accessor event_arns: ::Array[::String]
|
134
|
+
attr_accessor locale: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class DescribeEventDetailsResponse
|
139
|
+
attr_accessor successful_set: ::Array[Types::EventDetails]
|
140
|
+
attr_accessor failed_set: ::Array[Types::EventDetailsErrorItem]
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class DescribeEventTypesRequest
|
145
|
+
attr_accessor filter: Types::EventTypeFilter
|
146
|
+
attr_accessor locale: ::String
|
147
|
+
attr_accessor next_token: ::String
|
148
|
+
attr_accessor max_results: ::Integer
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class DescribeEventTypesResponse
|
153
|
+
attr_accessor event_types: ::Array[Types::EventType]
|
154
|
+
attr_accessor next_token: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class DescribeEventsForOrganizationRequest
|
159
|
+
attr_accessor filter: Types::OrganizationEventFilter
|
160
|
+
attr_accessor next_token: ::String
|
161
|
+
attr_accessor max_results: ::Integer
|
162
|
+
attr_accessor locale: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class DescribeEventsForOrganizationResponse
|
167
|
+
attr_accessor events: ::Array[Types::OrganizationEvent]
|
168
|
+
attr_accessor next_token: ::String
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class DescribeEventsRequest
|
173
|
+
attr_accessor filter: Types::EventFilter
|
174
|
+
attr_accessor next_token: ::String
|
175
|
+
attr_accessor max_results: ::Integer
|
176
|
+
attr_accessor locale: ::String
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class DescribeEventsResponse
|
181
|
+
attr_accessor events: ::Array[Types::Event]
|
182
|
+
attr_accessor next_token: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class DescribeHealthServiceStatusForOrganizationResponse
|
187
|
+
attr_accessor health_service_access_status_for_organization: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class EntityAccountFilter
|
192
|
+
attr_accessor event_arn: ::String
|
193
|
+
attr_accessor aws_account_id: ::String
|
194
|
+
attr_accessor status_codes: ::Array[("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED")]
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class EntityAggregate
|
199
|
+
attr_accessor event_arn: ::String
|
200
|
+
attr_accessor count: ::Integer
|
201
|
+
attr_accessor statuses: ::Hash[("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED"), ::Integer]
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class EntityFilter
|
206
|
+
attr_accessor event_arns: ::Array[::String]
|
207
|
+
attr_accessor entity_arns: ::Array[::String]
|
208
|
+
attr_accessor entity_values: ::Array[::String]
|
209
|
+
attr_accessor last_updated_times: ::Array[Types::DateTimeRange]
|
210
|
+
attr_accessor tags: ::Array[::Hash[::String, ::String]]
|
211
|
+
attr_accessor status_codes: ::Array[("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED")]
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class Event
|
216
|
+
attr_accessor arn: ::String
|
217
|
+
attr_accessor service: ::String
|
218
|
+
attr_accessor event_type_code: ::String
|
219
|
+
attr_accessor event_type_category: ("issue" | "accountNotification" | "scheduledChange" | "investigation")
|
220
|
+
attr_accessor region: ::String
|
221
|
+
attr_accessor availability_zone: ::String
|
222
|
+
attr_accessor start_time: ::Time
|
223
|
+
attr_accessor end_time: ::Time
|
224
|
+
attr_accessor last_updated_time: ::Time
|
225
|
+
attr_accessor status_code: ("open" | "closed" | "upcoming")
|
226
|
+
attr_accessor event_scope_code: ("PUBLIC" | "ACCOUNT_SPECIFIC" | "NONE")
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class EventAccountFilter
|
231
|
+
attr_accessor event_arn: ::String
|
232
|
+
attr_accessor aws_account_id: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class EventAggregate
|
237
|
+
attr_accessor aggregate_value: ::String
|
238
|
+
attr_accessor count: ::Integer
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class EventDescription
|
243
|
+
attr_accessor latest_description: ::String
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class EventDetails
|
248
|
+
attr_accessor event: Types::Event
|
249
|
+
attr_accessor event_description: Types::EventDescription
|
250
|
+
attr_accessor event_metadata: ::Hash[::String, ::String]
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class EventDetailsErrorItem
|
255
|
+
attr_accessor event_arn: ::String
|
256
|
+
attr_accessor error_name: ::String
|
257
|
+
attr_accessor error_message: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class EventFilter
|
262
|
+
attr_accessor event_arns: ::Array[::String]
|
263
|
+
attr_accessor event_type_codes: ::Array[::String]
|
264
|
+
attr_accessor services: ::Array[::String]
|
265
|
+
attr_accessor regions: ::Array[::String]
|
266
|
+
attr_accessor availability_zones: ::Array[::String]
|
267
|
+
attr_accessor start_times: ::Array[Types::DateTimeRange]
|
268
|
+
attr_accessor end_times: ::Array[Types::DateTimeRange]
|
269
|
+
attr_accessor last_updated_times: ::Array[Types::DateTimeRange]
|
270
|
+
attr_accessor entity_arns: ::Array[::String]
|
271
|
+
attr_accessor entity_values: ::Array[::String]
|
272
|
+
attr_accessor event_type_categories: ::Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]
|
273
|
+
attr_accessor tags: ::Array[::Hash[::String, ::String]]
|
274
|
+
attr_accessor event_status_codes: ::Array[("open" | "closed" | "upcoming")]
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class EventType
|
279
|
+
attr_accessor service: ::String
|
280
|
+
attr_accessor code: ::String
|
281
|
+
attr_accessor category: ("issue" | "accountNotification" | "scheduledChange" | "investigation")
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class EventTypeFilter
|
286
|
+
attr_accessor event_type_codes: ::Array[::String]
|
287
|
+
attr_accessor services: ::Array[::String]
|
288
|
+
attr_accessor event_type_categories: ::Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class InvalidPaginationToken
|
293
|
+
attr_accessor message: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class OrganizationAffectedEntitiesErrorItem
|
298
|
+
attr_accessor aws_account_id: ::String
|
299
|
+
attr_accessor event_arn: ::String
|
300
|
+
attr_accessor error_name: ::String
|
301
|
+
attr_accessor error_message: ::String
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class OrganizationEntityAggregate
|
306
|
+
attr_accessor event_arn: ::String
|
307
|
+
attr_accessor count: ::Integer
|
308
|
+
attr_accessor statuses: ::Hash[("IMPAIRED" | "UNIMPAIRED" | "UNKNOWN" | "PENDING" | "RESOLVED"), ::Integer]
|
309
|
+
attr_accessor accounts: ::Array[Types::AccountEntityAggregate]
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class OrganizationEvent
|
314
|
+
attr_accessor arn: ::String
|
315
|
+
attr_accessor service: ::String
|
316
|
+
attr_accessor event_type_code: ::String
|
317
|
+
attr_accessor event_type_category: ("issue" | "accountNotification" | "scheduledChange" | "investigation")
|
318
|
+
attr_accessor event_scope_code: ("PUBLIC" | "ACCOUNT_SPECIFIC" | "NONE")
|
319
|
+
attr_accessor region: ::String
|
320
|
+
attr_accessor start_time: ::Time
|
321
|
+
attr_accessor end_time: ::Time
|
322
|
+
attr_accessor last_updated_time: ::Time
|
323
|
+
attr_accessor status_code: ("open" | "closed" | "upcoming")
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class OrganizationEventDetails
|
328
|
+
attr_accessor aws_account_id: ::String
|
329
|
+
attr_accessor event: Types::Event
|
330
|
+
attr_accessor event_description: Types::EventDescription
|
331
|
+
attr_accessor event_metadata: ::Hash[::String, ::String]
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class OrganizationEventDetailsErrorItem
|
336
|
+
attr_accessor aws_account_id: ::String
|
337
|
+
attr_accessor event_arn: ::String
|
338
|
+
attr_accessor error_name: ::String
|
339
|
+
attr_accessor error_message: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class OrganizationEventFilter
|
344
|
+
attr_accessor event_type_codes: ::Array[::String]
|
345
|
+
attr_accessor aws_account_ids: ::Array[::String]
|
346
|
+
attr_accessor services: ::Array[::String]
|
347
|
+
attr_accessor regions: ::Array[::String]
|
348
|
+
attr_accessor start_time: Types::DateTimeRange
|
349
|
+
attr_accessor end_time: Types::DateTimeRange
|
350
|
+
attr_accessor last_updated_time: Types::DateTimeRange
|
351
|
+
attr_accessor entity_arns: ::Array[::String]
|
352
|
+
attr_accessor entity_values: ::Array[::String]
|
353
|
+
attr_accessor event_type_categories: ::Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]
|
354
|
+
attr_accessor event_status_codes: ::Array[("open" | "closed" | "upcoming")]
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class UnsupportedLocale
|
359
|
+
attr_accessor message: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
end
|
363
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Health
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
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.
|
4
|
+
version: 1.60.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 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.
|
22
|
+
version: 3.191.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.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-health/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-health/resource.rb
|
68
68
|
- lib/aws-sdk-health/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-health
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-health/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - AWSHealth
|
94
99
|
test_files: []
|